/*=============================================
  =                ROOT VARIABLES             =
  =============================================*/
:root {
  /* Colors */
  --primary-purple: #9b5eff;
  --text-primary: #fff;
  --text-secondary: #ccc;
  --text-meta: #a1a1aa;
  --text-dark: #000;
  --bg-dark: #000;
  --bg-light-dark: #0a0a0a;
  --bg-gradient: radial-gradient(circle at top left, #111 0%, #000 100%);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-alt: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  --glass-blur: blur(12px);

  /* Gradients */
  --gradient-logo: linear-gradient(to left, rgb(155, 139, 139), #ffffff);
  --gradient-cta: linear-gradient(90deg, #14b8a6, #3b82f6, #a855f7);
  --gradient-btn: linear-gradient(45deg, #14b8a6, #3b82f6, #9333ea);
  --gradient-btn-alt: linear-gradient(45deg, #eab308, #f97316, #ef4444);
  --gradient-badge: linear-gradient(90deg, #ff416c, #ff4b2b);

  /* Sizing & Spacing */
  --radius-l: 16px;
  --radius-m: 12px;
  --radius-s: 8px;

  /* Transitions & Animations */
  --transition-fast: 0.2s ease;
  --transition-med: 0.3s ease;
  --transition-slow: 0.4s ease;
}

/*=============================================
  =                GLOBAL STYLES              =
  =============================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: var(--bg-gradient);
  color: var(--text-primary);
  padding: 20px;
  min-height: 100vh;
  overflow-x: hidden;
}

/*=============================================
  =            HEADER & NAVIGATION            =
  =============================================*/
.fancy-header {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  margin-bottom: 30px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-l);
  box-shadow: 0 0 20px rgba(155, 94, 255, 0.2);
}

.logo,
.brand-highlight {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-logo);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: flicker 2s infinite alternate;
}


nav a {
  margin: 0 14px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-med);
}

nav a:hover {
  color: var(--text-primary);
}

nav a:hover::after {
  width: 100%;
}

/*=============================================
  =                   HERO                    =
  =============================================*/
.hero {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 100px;
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 460px;
  margin: 30px auto 0;
  padding: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-m);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3),
    0 0 25px rgba(255, 255, 255, 0.15);
}

.search-bar input {
  padding: 14px 18px;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  border-radius: var(--radius-s) 0 0 var(--radius-s);
  outline: none;
  font-size: 1rem;
}

.search-bar button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  background: var(--text-primary);
  border: none;
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  color: var(--text-dark);
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 12px #746e7d88;
  transition: background var(--transition-med);
}

.search-bar button:hover {
  background: var(--text-dark);
  color: var(--text-primary);
}

/*=============================================
  =              TYPING EFFECTS               =
  =============================================*/
.typing-heading {
  font-size: 3rem;
  font-weight: 900;
  white-space: pre-wrap;
  background: linear-gradient(to right, #fff, #aaa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-right: 3px solid var(--text-primary);
  display: inline-block;
  min-height: 40px;
  animation: blink-caret 0.7s step-end infinite;
}

.typing-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 10px black;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid white;
  width: 0;
  margin: 0 auto 40px;
  animation: typing-title-anim 2s steps(15) 2s infinite alternate,
    blink-caret 0.7s step-end infinite;
}

/* CORRECTED: Restored original classes for section headings */
.top-elements-heading,
.ftop-elements-heading {
  font-size: 30px;
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  margin: 0 auto 30px;
  border-right: 2px solid #fff;
}
.top-elements-heading {
  animation: typing 3s steps(20, end) infinite alternate;
}
.ftop-elements-heading {
  animation: typing 2s steps(20, end) infinite alternate;
}

/*=============================================
  =                  CARDS                    =
  =============================================*/
.card {
  min-width: 240px;
  padding: 40px;
  background: var(--glass-bg-alt);
  border: 1px solid #333;
  border-radius: var(--radius-l);
  text-align: center;
  color: var(--text-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
  will-change: transform;
  box-shadow: 0 0 1px rgba(69, 62, 62, 0.3), 0 0 25px rgba(255, 255, 255, 0.15);
  text-decoration: none;
}
.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(155, 94, 255, 0.3);
  border-color: rgb(29, 51, 163);
}

.element-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: var(--radius-l);
  width: 250px;
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition-med);
}
.element-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(155, 94, 255, 0.3);
}
.element-card h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.creator-card,
.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-m);
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-med);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05),
    0 0 10px rgba(255, 255, 255, 0.08);
}
.creator-card {
  min-width: 220px;
}
.testimonial-card {
  min-width: 280px;
  padding: 12px 20px;
  border-width: 2px;
}

.creator-card:hover,
.testimonial-card:hover {
  transform: scale(1.05) rotateY(5deg) rotateX(5deg);
  box-shadow: 0 15px 35px rgba(155, 94, 255, 0.3),
    0 0 20px rgba(255, 255, 255, 0.1);
  border-color: rgba(155, 94, 255, 0.4);
}

.creator-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.creator-details {
  display: flex;
  flex-direction: column;
}
.creator-name,
.testimonial-card h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}
.creator-meta {
  font-size: 0.85rem;
  color: var(--text-meta);
}

.testimonial-card h4 {
  margin: 0 0 4px 0;
}
.testimonial-card p {
  font-size: 14px;
  margin: 0;
  color: var(--text-secondary);
  opacity: 0.85;
}

.creator-popup {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  font-size: 0.9rem;
}

.creator-card:hover .creator-popup {
  opacity: 1;
  animation: bounceIn 0.6s ease forwards;
}

.button-set-card {
  background: var(--glass-bg);
  padding: 24px;
  border-radius: var(--radius-l);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}
.button-set-card h4 {
  margin-bottom: 16px;
}

.glass-card {
  /* For join section */
  display: inline-block;
  margin-top: 20px;
  padding: 20px 20px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: box-shadow var(--transition-slow);
  color: var(--text-primary);
}
.glass-card:hover {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

/*=============================================
  =           MARQUEE & SCROLLERS             =
  =============================================*/
.marquee-wrapper,
.scroll-wrapper,
.testimonials-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.scroll-wrapper,
.marquee-wrapper {
  overflow: visible;
}
.testimonials-marquee {
  margin: 60px 0;
  background: transparent;
}

.marquee-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.marquee-track,
.creator-scroll-track,
.testimonials-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}
.testimonials-track {
  gap: 40px;
  width: max-content;
}

.marquee-track {
  animation: scrollCards 25s linear infinite;
  transform-style: preserve-3d;
}
.marquee-track.reverse {
  animation: scrollCardsReverse 30s linear infinite;
}
.creator-scroll-track {
  animation: creatorScroll 30s linear infinite;
  overflow: visible;
}
.testimonials-track {
  animation: scroll-testimonials 40s linear infinite;
}

/*=============================================
  =                 SECTIONS                  =
  =============================================*/
.stats-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 50px 20px;
  background-color: #0d0d0d;
  text-align: center;
  color: white;
}
.stat-box {
  flex: 1 1 200px;
  max-width: 300px;
}
.stat-box .icon {
  margin-bottom: 10px;
}
.stat-box h2 {
  font-size: 48px;
  margin: 0;
  font-weight: 700;
}
.stat-box p {
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-meta);
}

.join-section {
  position: relative;
  padding: 60px 20px 40px;
  text-align: center;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: white;
}
.join-section h2 {
  font-size: 2.8rem;
  font-weight: bold;
  background: linear-gradient(90deg, #ffffff, #eeeeee);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  text-shadow: none;
}
.join-section p {
  max-width: 700px;
  margin: 0 auto 15px;
  font-size: 1.1rem;
  color: #e0e0e0;
}
.join-section h2 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  background: var(--gradient-cta);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInWords 0.6s ease forwards;
}
.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}
.circle1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  background: #3b82f6;
  opacity: 0.15;
}
.circle2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
  background: #a855f7;
  opacity: 0.15;
}

.top-elements-section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--bg-light-dark);
}
.top-elements-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/*=============================================
  =            BUTTONS & CONTROLS             =
  =============================================*/
.glow-btn,
.cta-button,
.pulse-button,
.gradient-btn,
.dummy-ui,
.social-btn {
  padding: 12px 24px;
  border-radius: var(--radius-m);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-med);
}

.glow-btn {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
  box-shadow: 0 0 15px #9b5eff33;
}
.glow-btn:hover {
  background: var(--text-primary);
  color: var(--text-dark);
  box-shadow: 0 0 25px #9b5eff88;
}

.cta-button {
  margin-top: 25px;
  padding: 15px 30px;
  color: var(--text-primary);
  background-color: #111;
  background-image: var(--gradient-cta);
  background-size: 200% auto;
}
.cta-button:hover {
  background-position: right center;
  transform: scale(1.05);
}

.pulse-button {
  background: var(--primary-purple);
  color: var(--text-primary);
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 0 0 rgba(155, 94, 255, 0.7);
  animation: pulse 2s infinite;
}

.gradient-btn {
  background-image: var(--gradient-btn);
  color: var(--text-primary);
  box-shadow: 0 0 12px rgba(155, 94, 255, 0.2);
}
.gradient-btn.alt {
  background-image: var(--gradient-btn-alt);
}
.gradient-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.social-btn {
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.social-btn.google {
  background: white;
  color: black;
  border: none;
}
.social-btn.google:hover {
  background: rgb(118, 108, 108);
}

.dummy-ui {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  border-radius: var(--radius-s);
}
.dummy-ui:hover {
  background: var(--text-primary);
  color: var(--text-dark);
}

.btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
}

/*=============================================
  =                UI ELEMENTS                =
  =============================================*/
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #555;
  transition: var(--transition-slow);
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition-slow);
  border-radius: 50%;
}
input:checked + .slider {
  background-color: var(--primary-purple);
}
input:checked + .slider:before {
  transform: translateX(22px);
}

.floating-input {
  position: relative;
  margin-top: 10px;
}
.floating-input input {
  width: 100%;
  padding: 14px 10px 10px;
  background: #1a1a1a;
  border: 1px solid #444;
  color: var(--text-primary);
  border-radius: var(--radius-s);
  outline: none;
}
.floating-input label {
  position: absolute;
  top: 14px;
  left: 10px;
  color: #aaa;
  font-size: 0.9rem;
  transition: var(--transition-med);
  pointer-events: none;
}
.floating-input input:focus + label,
.floating-input input:valid + label {
  top: -8px;
  left: 8px;
  font-size: 0.75rem;
  background: #1a1a1a;
  padding: 0 4px;
  color: var(--primary-purple);
}

.neon-loader {
  width: 24px;
  height: 24px;
  border: 3px solid var(--text-primary);
  border-top-color: var(--primary-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}

.gradient-badge {
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--gradient-badge);
  color: var(--text-primary);
  font-weight: bold;
  font-size: 0.9rem;
  display: inline-block;
  box-shadow: 0 0 12px rgba(255, 75, 43, 0.4);
}

/*=============================================
  =                   FOOTER                  =
  =============================================*/
.stylish-footer {
  background: transparent;
  padding: 60px 20px 30px;
  color: #cbd5e1;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}
.footer-section {
  flex: 1 1 200px;
  min-width: 180px;
}
.footer-section h3 {
  color: var(--text-primary);
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-section a {
  display: block;
  font-size: 14px;
  color: #a0aec0;
  margin-bottom: 10px;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.footer-section a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}
.footer-socials a {
  font-size: 18px;
  color: #a0aec0;
  margin-right: 15px;
  transition: transform var(--transition-fast), color var(--transition-fast);
}
.footer-socials a:hover {
  color: white;
  transform: scale(1.2);
}
.footer-section.brand h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.tagline {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 10px;
}
.license {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 20px;
}
.license a {
  color: #d8b4fe;
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #6b7280;
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
}
small,
.signin-link {
  font-size: 12px;
  color: #999;
}
.signin-link a {
  color: var(--primary-purple);
  text-decoration: none;
}

/*=============================================
  =                ANIMATIONS                 =
  =============================================*/
@keyframes flicker {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
}

@keyframes blink-caret {
  /* Consolidated from blink-caret and blink-title */
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: var(--text-primary);
  }
}

@keyframes typing-title-anim {
  from {
    width: 0;
  }
  to {
    width: 16ch;
  }
}

/* CORRECTED: Restored original keyframe for the section headings */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 19ch;
  }
}

@keyframes scrollCards {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrollCardsReverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes creatorScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-testimonials {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px) scale(1.05);
  }
  80% {
    transform: translateX(-50%) translateY(-6px) scale(0.98);
  }
  100% {
    transform: translateX(-50%) translateY(-8px) scale(1);
  }
}

@keyframes fadeInWords {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(155, 94, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(155, 94, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(155, 94, 255, 0);
  }
}

/*=============================================
  =                MEDIA QUERIES              =
  =============================================*/
@media (max-width: 768px) {
  .btns {
    flex-direction: column;
    gap: 10px;
  }
  .glow-btn {
    width: 100%;
    text-align: center;
  }
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
}

/*=============================================
  =         MOBILE RESPONSIVE (NEW)           =
  =============================================*/
@media (max-width: 768px) {
  /* --- Global Styles --- */
  body {
    /* Reduce padding on the sides for smaller screens */
    padding: 15px;
  }

  /* --- Header & Navigation --- */
  .fancy-header {
    flex-direction: column; /* Stack logo and nav */
    gap: 15px;
    padding: 15px;
    position: static; /* Remove sticky header on mobile if preferred */
  }

  .logo {
    font-size: 1.8rem; /* Slightly smaller logo */
  }

  nav a {
    margin: 0 8px; /* Reduce space between nav links */
    font-size: 0.95rem;
  }
  /* --- Hero & Search --- */
  .hero {
    margin-top: 40px;
    margin-bottom: 60px;
  }

  .search-bar {
    width: 100%;
    max-width: 100%;
  }

  /* --- Typography & Headings --- */
  .typing-heading {
    font-size: 2.2rem; /* Reduce font size */
    line-height: 1.3;
  }

  .typing-title {
    font-size: 1.8rem;
  }

  .top-elements-heading,
  .ftop-elements-heading {
    font-size: 1.5rem; /* Make section titles smaller */
    white-space: normal; /* Allow wrapping if needed */
    border-right: none; /* Remove the typing caret effect */
    width: auto;
    animation: none; /* Disable typing animation */
    text-align: center;
  }

  /* --- Cards --- */
  .card {
    min-width: unset;
    width: 100%;
    padding: 30px 25px; /* Reduce padding */
  }

  .element-card {
    width: 100%; /* Make cards fill the available width */
    max-width: 280px; /* But not get too wide on larger mobile screens */
  }

  /* --- Sections --- */
  .stats-section {
    padding: 40px 15px;
    gap: 30px; /* Increase gap for stacked items */
  }

  .stat-box h2 {
    font-size: 2.5rem; /* Reduce font size for stats */
  }

  .join-section h2 {
    font-size: 2rem; /* Reduce font size for section titles */
    line-height: 1.2;
  }

  .top-elements-grid {
    gap: 20px;
  }

  /* --- Marquees --- */
  .marquee-track,
  .creator-scroll-track,
  .testimonials-track {
    gap: 15px; /* Reduce gap between scrolling cards */
  }

  /* --- Footer --- */
  .footer-content {
    flex-direction: column;
    text-align: center; /* Center-align footer content */
    gap: 30px;
  }

  .footer-section a:hover {
    transform: none; /* Disable hover effect on mobile */
  }

  .footer-socials {
    justify-content: center; /* Center social icons */
  }
}
