/* ==========================================================================
   HUMNAVA GLOBAL MUSIC PLATFORM - DESIGN SYSTEM & STYLESHEET
   ==========================================================================
   TABLE OF CONTENTS:
   1. DESIGN TOKENS & RESET
   2. MASTER GRID UTILITIES & CONTAINERS
   3. HEADER & NAVIGATION
   4. HERO SECTION & FLOATING SPOTIFY WIDGET
   5. LATEST EVENTS CAROUSEL SECTION
   6. INTRO & SLIDING CABINET DOORS SECTION
   7. MUSIC GALLERY & ACCORDION SECTION
   8. PARTNERS TICKER SECTION
   9. OUR HUMNAVAS & DOTTED MAP CANVAS SECTION
   10. JOURNEY SECTION (REACTIONS, PRESS, COMMUNITY)
   11. FOOTER SECTION
   12. MODALS & OVERLAYS (YOUTUBE & SPOTIFY PLAYER)
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS & RESET
   ========================================================================== */
:root {
  --margin: 3.611111111%;
  /* (52/1440 * 100%) exact percentage margin right and left */
  --gutter: 1.388888889%;
  /* (20/1440 * 100%) exact percentage gutter between columns */
  --grid-margin-pct: 3.611111111%;
  --grid-gutter-pct: 1.388888889%;
  --section-v-margin: 100px;
  /* Static 100px top & bottom section padding */
  --font-heading: 'Figtree', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --line-height: 1.3;
  --color-mint: #8dd9d5;
}

/* ==========================================================================
   2. MASTER GRID UTILITIES & CONTAINERS
   ========================================================================== */
/* Master 3-Column Design System Grid Utility */
.site-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  width: 100%;
  box-sizing: border-box;
}

.site-grid-container {
  width: 100%;
  box-sizing: border-box;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: var(--font-body);
  line-height: var(--line-height);
  background-color: #000000;
  color: #ffffff;
}

.global-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  padding: 20px clamp(16px, 4vw, 64px);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(0, 0, 0, 0.45) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border-bottom: none !important;
  transition: background-color 0.4s ease, border-bottom 0.4s ease, padding 0.3s ease;
}

/* Header when scrolled into content */
.header.scrolled {
  background: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 1px;
  color: #FFFFFF !important;
}

.logo a {
  color: #FFFFFF !important;
  text-decoration: none;
}

/* Center CTA Navigation Links (Relative Gap to Screen Size) */
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5.5vw, 110px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5.5vw, 110px);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFFFF !important;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-mint);
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover {
  color: var(--color-mint);
}

.nav-link:hover::after {
  width: 100%;
}

/* Right APPLY NOW CTA Button & Hamburger Menu */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;

}

.mobile-apply-btn {
  display: none;
}

/* Hamburger Toggle Button */
.hamburger-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 105;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, background-color 0.3s ease;
}

.hamburger-menu-btn.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: #86D7D7;
}

.hamburger-menu-btn.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.hamburger-menu-btn.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: #86D7D7;
}

/* Desktop / Mobile Latest Section Toggle (Laptop minimum set to 1024px) */
.desktop-latest-events {
  display: flex;
}

.mobile-nav-apply-btn,
.mobile-latest-events {
  display: none !important;
}

@media (max-width: 1024px) {
  .hamburger-menu-btn {
    display: flex;
  }

  .social-icons {
    right: 18px !important;
    gap: 24px !important;
    padding: 10px 0 !important;
  }

  .social-icons a {
    font-size: 20px !important;
    width: 30px !important;
    height: 30px !important;
  }

  .hero-pause-btn {
    display: flex !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 20 !important;
  }

  /* Hide CTA Section below 1024px screen width */
  .cta-section,
  #cta {
    display: none !important;
  }

  /* Hide Desktop Version on Mobile / Below 1024px Width */
  .desktop-latest-events {
    display: none !important;
  }

  /* Show Mobile Version Below 1024px Width */
  .mobile-latest-events {
    display: flex !important;
    flex-direction: column !important;
    background-color: #86D7D7 !important;
    /* Mint background */
    padding: 0 0 40px 0 !important;
  }

  .mobile-latest-events .latest-banner-bar {
    display: flex !important;
    background-color: #F4FA36 !important;
    /* Yellow banner */
    color: #000000 !important;
    font-family: 'Figtree', var(--font-heading), sans-serif !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.05em !important;
    padding: 12px 20px !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-transform: uppercase !important;
  }

  .mobile-latest-events .banner-star {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
  }

  .mobile-latest-events .banner-star img {
    width: 16px !important;
    height: 16px !important;
    object-fit: contain !important;
    display: block !important;
  }

  .mobile-latest-events .latest-section-body {
    padding-top: 24px !important;
    padding-bottom: 0 !important;
    padding-left: max(20px, calc(20px / 1440 * 100vw)) !important;
    padding-right: max(20px, calc(20px / 1440 * 100vw)) !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .mobile-latest-events .events-subheading {
    color: #000000 !important;
    font-family: 'Figtree', var(--font-heading), sans-serif !important;
    font-size: clamp(22px, 5.2vw, 30px) !important;
    font-weight: 800 !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
    margin-bottom: 18px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-transform: uppercase !important;
    text-align: left !important;
    width: calc(100% - 40px) !important;
    box-sizing: border-box !important;
  }

  /* Spotify Player Card: Exact Screenshot Replica */
  .mobile-latest-events .latest-media-player-card {
    display: flex !important;
    flex-direction: column !important;
    background: #111111 !important;
    border-radius: 22px !important;
    padding: 16px 20px 14px 20px !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
    margin-bottom: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    color: #FFFFFF !important;
    width: calc(100% - 40px) !important;
    box-sizing: border-box !important;
  }

  .mobile-latest-events .player-top-row {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 14px !important;
    width: 100% !important;
  }

  .mobile-latest-events .player-thumb-wrapper {
    width: 64px !important;
    height: 64px !important;
    position: relative !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-latest-events .player-thumb-img {
    width: 64px !important;
    height: 64px !important;
    border-radius: 12px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    border: none !important;
    box-shadow: none !important;
    animation: none !important;
  }

  .mobile-latest-events .player-thumb-hole {
    display: none !important;
  }

  .mobile-latest-events .player-track-info {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .mobile-latest-events .player-track-title {
    font-family: 'Figtree', var(--font-heading), sans-serif !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    margin: 0 0 2px 0 !important;
    letter-spacing: -0.01em !important;
  }

  .mobile-latest-events .player-track-sub {
    font-family: 'Open Sans', var(--font-body), sans-serif !important;
    font-size: 13.5px !important;
    color: #888888 !important;
    margin: 0 !important;
  }

  .mobile-latest-events .player-play-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background-color: #79DED7 !important;
    border: none !important;
    color: #000000 !important;
    font-size: 17px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s ease, filter 0.2s ease !important;
  }

  .mobile-latest-events .player-play-btn i {
    margin-left: 2px !important;
    color: #000000 !important;
  }

  .mobile-latest-events .player-play-btn:hover {
    filter: brightness(1.06) !important;
  }

  .mobile-latest-events .player-play-btn:active {
    transform: scale(0.95) !important;
  }

  .mobile-latest-events .player-scrub-bar {
    width: 100% !important;
    height: 4px !important;
    background: #333333 !important;
    border-radius: 2px !important;
    overflow: hidden !important;
    margin-bottom: 6px !important;
  }

  .mobile-latest-events .scrub-progress-fill {
    height: 100% !important;
    background-color: #79DED7 !important;
    border-radius: 2px !important;
  }

  .mobile-latest-events .player-timestamps {
    display: flex !important;
    justify-content: space-between !important;
    font-family: 'Open Sans', var(--font-body), sans-serif !important;
    font-size: 11.5px !important;
    color: #777777 !important;
  }

  .mobile-latest-events .events-carousel-wrapper {
    width: 100% !important;
    position: relative !important;
  }

  .mobile-latest-events .events-arrow {
    display: none !important;
    /* Hide desktop arrows on mobile */
  }

  .mobile-latest-events .events-track {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    width: calc(100% + 2 * max(20px, calc(20px / 1440 * 100vw))) !important;
    margin-left: calc(-1 * max(20px, calc(20px / 1440 * 100vw))) !important;
    margin-right: calc(-1 * max(20px, calc(20px / 1440 * 100vw))) !important;
    padding-top: 0 !important;
    padding-bottom: 12px !important;
    padding-left: calc(50vw - 41vw) !important;
    padding-right: calc(50vw - 41vw) !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    box-sizing: border-box !important;
  }

  .mobile-latest-events .events-track::-webkit-scrollbar {
    display: none !important;
  }

  /* Vertical Card Layout across Mobile & Tablet Viewports */
  .mobile-latest-events .event-card {
    flex: 0 0 84% !important;
    /* Main active card centered */
    min-width: 280px !important;
    max-width: 380px !important;
    background: #FFFFFF !important;
    /* Pure white rounded card */
    border-radius: 20px !important;
    padding: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 0 !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  .mobile-latest-events .event-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12) !important;
  }

  .mobile-latest-events .event-card-media {
    display: none !important;
  }

  .mobile-latest-events .event-card-media-box {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    margin: 0 0 14px 0 !important;
    position: relative !important;
    background: #111111 !important;
    flex-shrink: 0 !important;
  }

  .mobile-latest-events .event-card-iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 14px !important;
  }

  .mobile-latest-events .event-card-cover-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    display: block !important;
  }

  .mobile-latest-events .event-open-link-btn {
    position: absolute !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13.5px !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    background: rgba(0, 0, 0, 0.55) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    padding: 7px 16px !important;
    border-radius: 6px !important;
    z-index: 3 !important;
    pointer-events: auto !important;
    transition: transform 0.2s ease, background 0.2s ease !important;
  }

  .mobile-latest-events .event-open-link-btn:hover,
  .mobile-latest-events .event-open-link-btn:active {
    transform: translate(-50%, -50%) scale(0.96) !important;
    background: rgba(0, 0, 0, 0.75) !important;
  }

  .mobile-latest-events .event-card-content {
    width: 100% !important;
    padding: 0 4px 4px 4px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    flex: 1 1 auto !important;
    box-sizing: border-box !important;
  }

  .mobile-latest-events .event-tag {
    display: block !important;
    font-family: 'Figtree', var(--font-heading), sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em !important;
    color: #888888 !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
  }

  .mobile-latest-events .event-card-title {
    font-family: 'Figtree', var(--font-heading), sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #000000 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em !important;
    width: 100% !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: calc(18px * 1.25 * 2) !important;
  }

  .mobile-latest-events .event-card-desc {
    font-family: 'Open Sans', var(--font-body), sans-serif !important;
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    color: #444444 !important;
    margin: 0 !important;
    width: 100% !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    height: calc(13.5px * 1.45 * 4) !important;
    min-height: calc(13.5px * 1.45 * 4) !important;
  }

  .mobile-latest-events .watch-now-btn {
    display: none !important;
  }

  .mobile-latest-events .events-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 18px !important;
  }

  .mobile-latest-events .events-pagination .dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease !important;
  }

  .mobile-latest-events .events-pagination .dot.active {
    background: #000000 !important;
    width: 7px !important;
    height: 7px !important;
    transform: scale(1.1) !important;
  }

  /* Vertical Layout sizing for Tablet Viewports (768px - 1024px) */
  @media (min-width: 768px) {
    .mobile-latest-events .event-card {
      flex: 0 0 460px !important;
      min-width: 420px !important;
      max-width: 540px !important;
      padding: 18px !important;
      border-radius: 22px !important;
    }

    .mobile-latest-events .event-card-title {
      font-size: 20px !important;
    }
  }

  /* Hide header bar APPLY NOW button when navbar converts to hamburger menu */
  .header-right #header-apply-btn {
    display: none !important;
  }

  /* Intro Section Layout Below 1024px (Mobile & Small Tablets) */
  @media (max-width: 1023px) {
    .intro-section {
      display: flex !important;
      flex-direction: column !important;
      min-height: auto !important;
      height: auto !important;
      padding: 60px 24px 50px 24px !important;
      background-color: #000000 !important;
      gap: 0 !important;
      box-sizing: border-box !important;
      align-items: flex-start !important;
    }

    .intro-container {
      display: flex !important;
      flex-direction: column !important;
      width: 100% !important;
      max-width: 100% !important;
      gap: 0 !important;
    }

    .intro-left {
      position: static !important;
      width: 100% !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      margin-left: 0 !important;
      grid-column: auto !important;
      top: auto !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      text-align: left !important;
    }

    .intro-title-wrapper {
      width: 100% !important;
      text-align: left !important;
    }

    .intro-title {
      text-align: left !important;
      font-family: 'Figtree', var(--font-heading), sans-serif !important;
      font-size: clamp(32px, 6.5vw, 46px) !important;
      line-height: 1.15 !important;
      margin-bottom: 0 !important;
      letter-spacing: -0.01em !important;
      font-weight: 800 !important;
      text-transform: uppercase !important;
    }

    .intro-image {
      display: none !important;
    }

    .intro-text {
      margin-left: 0 !important;
      justify-content: flex-start !important;
      width: 100% !important;
      margin-top: 24px !important;
      margin-bottom: 32px !important;
    }

    .intro-text-desc {
      text-align: left !important;
      font-family: 'Open Sans', var(--font-body), sans-serif !important;
      font-size: clamp(15px, 3.6vw, 18px) !important;
      line-height: 1.55 !important;
      color: rgba(255, 255, 255, 0.85) !important;
      max-width: 100% !important;
      font-weight: 400 !important;
    }

    .intro-middle {
      display: flex !important;
      flex-direction: row !important;
      overflow-x: auto !important;
      scroll-snap-type: x mandatory !important;
      -webkit-overflow-scrolling: touch !important;
      gap: 16px !important;
      width: calc(100% + 48px) !important;
      margin-left: -24px !important;
      margin-right: -24px !important;
      padding-left: 24px !important;
      padding-right: 24px !important;
      padding-bottom: 16px !important;
      box-sizing: border-box !important;
      scrollbar-width: none !important;
    }

    .intro-middle::-webkit-scrollbar {
      display: none !important;
    }

    .intro-img {
      flex: 0 0 85% !important;
      min-width: 280px !important;
      max-width: 380px !important;
      height: 220px !important;
      aspect-ratio: auto !important;
      object-fit: cover !important;
      border-radius: 14px !important;
      margin-bottom: 0 !important;
      scroll-snap-align: center !important;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6) !important;
    }

    .intro-right,
    .cabinet-door,
    .intro-pattern-curtain {
      display: none !important;
    }
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-left: none;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    gap: 16px;
    z-index: 102;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease, opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
    box-sizing: border-box;
  }

  .header-nav .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .header.scrolled .header-nav {
    background: rgba(0, 0, 0, 0.75);
  }

  .header-nav.active {
    max-height: 480px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding: 24px 32px 32px 32px;
  }

  .header-nav .nav-link {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.1em;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Display solid mint APPLY NOW button inside hamburger drawer when hamburger active */
  .header-nav .mobile-nav-apply-btn {
    display: flex !important;
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: #86D7D7;
    color: #000000 !important;
    border: 1px solid #86D7D7;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 800;
    margin-top: 8px;
    box-sizing: border-box;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-decoration: none;
  }
}

.apply-btn-header {
  box-sizing: border-box;

  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 10px;

  width: 118px;
  height: 39px;

  border: 1px solid #FFFFFF;
  background: transparent;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;

  /* Inside auto layout */
  flex: none;
  order: 2;
  flex-grow: 0;
}

.apply-btn-header:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 95vh;
  width: 100vw;
  overflow: hidden;
  z-index: 1;
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.mute-btn {
  position: absolute;
  bottom: var(--margin);
  left: var(--margin);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.mute-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* Hero Center Pause/Play Button (Hidden on Desktop, Shown on Mobile when Navbar converts to Hamburger) */
.hero-pause-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #FFFFFF;
  font-size: 22px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 15;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-pause-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0, 0, 0, 0.5);
  border-color: #86D7D7;
  color: #86D7D7;
}

/* Semi-Transparent Liquid Glass Pop-Up Modal (Hero Video Paused State) */
.hero-modal-overlay {
  position: absolute;
  inset: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-modal-card {
  position: relative;
  width: 100%;
  max-width: 340px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%), rgba(12, 18, 22, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  padding: 32px 24px 28px 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 1.5px 1.5px rgba(255, 255, 255, 0.5), inset 0 -1px 2px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(28px) saturate(220%);
  -webkit-backdrop-filter: blur(28px) saturate(220%);
  text-align: center;
  transform: translateY(16px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-modal-overlay.active .hero-modal-card {
  transform: translateY(0) scale(1);
}

.hero-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-modal-close:hover {
  color: #86D7D7;
  transform: scale(1.2);
}

.hero-modal-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 6px 0 14px 0;
}

.hero-modal-title .mint-accent {
  color: #86D7D7;
}

.hero-modal-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 24px 0;
}

.hero-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hero-modal-btn {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.hero-modal-btn-primary {
  background: #86D7D7;
  color: #000000;
  border: 1px solid #86D7D7;
}

.hero-modal-btn-primary:hover {
  background: #a2ecec;
  border-color: #a2ecec;
  transform: translateY(-2px);
}

.hero-modal-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #FFFFFF;
  backdrop-filter: blur(4px);
}

.hero-modal-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* Apply Now Button (Hero) */
.apply-btn {
  position: absolute;
  bottom: var(--margin);
  left: var(--margin);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  letter-spacing: 1px;
  cursor: pointer;
}

.apply-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* Social Icons (Vertical Column on Right of Hero Screen) */
.social-icons {
  position: absolute;
  top: 50%;
  right: var(--margin);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 16px 0;
  z-index: 12;
}

.social-icons a {
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.social-icons a:hover {
  transform: scale(1.25);
  opacity: 1;
  color: #79DED7;
}

/* ==========================================
   Spotify Spinning Vinyl Widget & Player
   ========================================== */
.spotify-vinyl-widget {
  position: fixed;
  bottom: 30px;
  right: 52px;
  z-index: 1000;
  display: flex;
  align-items: center;
}

/* Spinning Vinyl Disc Button */
.vinyl-disc-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 0;
  background: #000;
  border: 2.5px solid #79DED7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 18px rgba(121, 222, 215, 0.5);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  z-index: 2;
  outline: none;
  overflow: hidden;
}

.vinyl-disc-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(121, 222, 215, 0.8), 0 0 30px rgba(121, 222, 215, 0.9);
}

.vinyl-disc-btn:hover .vinyl-disc-grooves {
  animation-duration: 3s;
}

.vinyl-disc-grooves {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spinVinyl 6s linear infinite;
}

.vinyl-photo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.vinyl-center-hole {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.9);
}

/* Vinyl Play / Pause Button Control Overlay (Spans directly across full vinyl disc) */
.vinyl-control-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #79DED7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 1;
  visibility: visible;
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 5;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.85));
}

.vinyl-disc-btn:hover .vinyl-control-overlay {
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
}

.vinyl-control-overlay:hover {
  color: #79DED7;
}

/* Paused State for Vinyl Disc */
.vinyl-disc-btn.is-paused {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.vinyl-disc-btn.is-paused .vinyl-disc-grooves {
  animation-play-state: paused !important;
}

.vinyl-disc-btn.is-paused .vinyl-control-overlay {
  border-color: #fff;
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.vinyl-disc-btn.is-paused .vinyl-pulse-ring {
  animation-play-state: paused !important;
  opacity: 0.2;
}

.vinyl-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(121, 222, 215, 0.5);
  animation: vinylPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}

@keyframes spinVinyl {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes vinylPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.18);
    opacity: 0.2;
  }
}

/* Expandable Playlist Card (Pops out to the left) */
.vinyl-playlist-card {
  position: absolute;
  right: 76px;
  bottom: -5px;
  width: 320px;
  background: rgba(12, 12, 12, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(121, 222, 215, 0.4);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85), 0 0 30px rgba(121, 222, 215, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px) scale(0.9);
  transition: opacity 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.35s;
  pointer-events: none;
  z-index: 1;
}

.vinyl-playlist-card::after {
  content: '';
  position: absolute;
  right: -8px;
  bottom: 24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent rgba(121, 222, 215, 0.4);
}

.vinyl-playlist-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.playlist-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.playlist-badge {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #79DED7;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-close-btn {
  background: transparent;
  border: none;
  color: #aaa;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.card-close-btn:hover {
  color: #fff;
}

.playlist-card-body {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.playlist-cover-wrapper {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}

.playlist-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.playlist-cover-wrapper:hover .playlist-cover-img {
  transform: scale(1.1);
}

.play-overlay-icon {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #79DED7;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.playlist-cover-wrapper:hover .play-overlay-icon {
  opacity: 1;
}

.playlist-info {
  flex-grow: 1;
}

.playlist-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.playlist-subtitle {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.playlist-mini-tracks {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-track-item {
  font-size: 12px;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.mini-track-item:hover,
.mini-track-item.active {
  background: rgba(121, 222, 215, 0.15);
  color: #79DED7;
}

.open-player-btn {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #79DED7;
  color: #000;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.open-player-btn:hover {
  background: #8ae5df;
  transform: translateY(-1px);
}

/* ==========================================
   Full Music Player Modal Styles
   ========================================== */
.music-player-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.music-player-modal.active {
  opacity: 1;
  visibility: visible;
}

.player-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.player-modal-card {
  position: relative;
  z-index: 2;
  width: 500px;
  max-width: 92vw;
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(145deg, #181818, #0e0e0e);
  border: 1px solid rgba(121, 222, 215, 0.4);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(121, 222, 215, 0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.player-mode-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 12px;
}

.mode-tab-btn {
  flex: 1;
  padding: 8px 12px;
  background: transparent;
  border: none;
  color: #888;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.mode-tab-btn:hover {
  color: #fff;
}

.mode-tab-btn.active {
  background: #79DED7;
  color: #000;
}

.music-player-modal.active .player-modal-card {
  transform: scale(1) translateY(0);
}

.player-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.player-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.player-brand-badge {
  font-size: 11px;
  font-weight: 700;
  color: #79DED7;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.player-main-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.player-art-container {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 20px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.player-cover-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-track-info {
  text-align: center;
  margin-bottom: 20px;
}

.player-track-info h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.player-track-info p {
  font-size: 14px;
  color: #888;
}

.player-seek-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.time-label {
  font-size: 12px;
  color: #888;
  width: 35px;
  text-align: center;
}

.player-seek-bar {
  flex-grow: 1;
  accent-color: #79DED7;
  cursor: pointer;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.player-ctrl-btn {
  background: transparent;
  border: none;
  color: #aaa;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.player-ctrl-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

.play-pause-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #79DED7;
  color: #000;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(121, 222, 215, 0.4);
}

.play-pause-btn:hover {
  background: #8ae5df;
  color: #000;
  transform: scale(1.08);
}

.player-playlist-select {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 18px;
}

.player-playlist-select h4 {
  font-size: 12px;
  letter-spacing: 1px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal-track-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-track-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-track-item:hover,
.modal-track-item.active {
  background: rgba(121, 222, 215, 0.15);
}

.modal-track-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 13px;
}

.modal-track-left i {
  color: #79DED7;
}

.modal-track-left div {
  display: flex;
  flex-direction: column;
}

.modal-track-left span {
  font-size: 11px;
  color: #888;
}

.track-time {
  font-size: 12px;
  color: #666;
}

.player-modal-footer {
  text-align: center;
}

.spotify-external-link {
  color: #79DED7;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}

.spotify-external-link:hover {
  opacity: 0.8;
}

/* CTA Section matching Figma specifications */
.cta-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 56px var(--margin);
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  background-color: #000000;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* ==========================================
   LATEST / UPCOMING EVENTS SECTION
   Figma Specification Implementation
   ========================================== */
.latest-events-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--section-v-margin) 0;
  gap: 30px;
  isolation: isolate;
  width: 100%;
  box-sizing: border-box;
  background: #86D7D7;
  position: relative;
  z-index: 2;
  overflow: hidden;
  font-family: 'Figtree', sans-serif;
}

.events-subheading {
  width: 100%;
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 93%;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  color: #000000;
  margin: 0;
  padding-left: var(--margin);
  padding-right: var(--margin);
  box-sizing: border-box;
}

.events-subheading .highlight-italic {
  font-style: italic;
  font-weight: 800;
  font-size: 24px;
  margin-left: 0.28em;
  display: inline;
}

.events-carousel-wrapper {
  position: relative;
  width: 100%;
  padding-left: 62px;
  padding-right: 62px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.events-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  box-sizing: border-box;
  filter: drop-shadow(14px 14px 6px rgba(0, 0, 0, 0.03));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.events-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.event-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  gap: 20px;
  width: 884px;
  height: 329px;
  background: #FFFFFF;
  border-radius: 16px;
  flex-shrink: 0;
}

.event-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px;
  width: 312px;
  height: 281px;
}

.event-card-title {
  width: 312px;
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 44px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #000000;
  margin: 0 0 10px 0;
}

.event-card-title .highlight-italic {
  font-style: italic;
  font-weight: 800;
  font-size: 44px;
  display: block;
  margin-left: 0;
}

.event-card-desc {
  width: 312px;
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: #000000;
  margin: 0 0 16px 0;
}

.watch-now-btn {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 18px;
  gap: 8px;
  margin: 0 auto 0 0;
  width: auto;
  min-width: 150px;
  height: 40px;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.004);
  border: 1px solid #000000;
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 141%;
  letter-spacing: 0.04em;
  color: #000000;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.watch-now-btn:hover {
  background: #000000;
  color: #FFFFFF;
}

.watch-now-btn:hover {
  background: #000000;
  color: #FFFFFF;
}

.event-card-media {
  position: relative;
  width: 500px;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
  cursor: pointer;
}

.event-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.event-card-media:hover .event-card-img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.card-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #79DED7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #79DED7;
  font-size: 22px;
  padding-left: 3px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.event-card-media:hover .card-play-button {
  transform: translate(-50%, -50%) scale(1.15);
  background: #79DED7;
  color: #000000;
}

.event-card-iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: none;
}

.events-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease, opacity 0.3s ease;
  padding: 0;
}

.events-arrow-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.events-arrow-img-right {
  transform: scaleX(-1);
}

.events-arrow-left {
  left: 10px;
  transform: translateY(-50%);
}

.events-arrow-right {
  right: 10px;
  transform: translateY(-50%);
}

.events-arrow:hover .events-arrow-img {
  transform: scale(1.2);
}

.events-arrow:hover .events-arrow-img-right {
  transform: scaleX(-1) scale(1.2);
}

.events-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin-top: 10px;
}

.events-pagination .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #080808;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease;
}

.events-pagination .dot.active {
  background: #FFFFFF;
  opacity: 1;
  transform: scale(1.4);
}

@media (max-width: 900px) {
  .latest-events-section {
    padding: 60px 20px;
  }

  .event-card {
    width: 300px;
    min-width: 300px;
    flex-direction: column;
    height: auto;
  }

  .event-card-media {
    width: 100%;
    height: 180px;
  }

  .event-card-content {
    width: 100%;
    height: auto;
  }

  .event-card-title {
    font-size: 26px;
    width: 100%;
  }

  .event-card-desc {
    width: 100%;
  }
}

.cta-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-mint);
  text-decoration: none;
  border: 1px solid rgba(141, 217, 213, 0.5);
  padding: 20px 24px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: transparent;
  width: 270px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.cta-btn:hover {
  background: rgba(141, 217, 213, 0.1);
  border-color: var(--color-mint);
  box-shadow: 0 0 15px rgba(141, 217, 213, 0.2);
}

.star-divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding: 0 12px;
  overflow: hidden;
  height: 60px;
}

/* Intro Section */
/* ==========================================================================
   6. INTRO & SLIDING CABINET DOORS SECTION
   ========================================================================== */
.intro-section {
  background-color: #000000;
  padding-top: var(--section-v-margin);
  padding-bottom: var(--section-v-margin);
  padding-left: var(--margin);
  padding-right: var(--margin);
  display: flex;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gutter);
  align-items: start;
  min-height: 1208px;
  position: relative;
  box-sizing: border-box;
}

.intro-left {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 20px;
  margin-left: 80px;
  grid-column: 1;
  position: sticky;
  top: 120px;
  height: max-content;
}

.intro-title {
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 0.95;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: right;
  color: #FFFFFF;
  letter-spacing: 0.01em;

}

.intro-desc-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.highlight-music {
  color: #86D7D7;
}

.intro-image {
  display: flex;
  justify-content: flex-end;
}

.intro-flower {
  width: 72px;
  height: 72px;
  object-fit: contain;
  align-self: flex-end;
  flex-shrink: 0;
  margin-bottom: 20px;

}

.intro-text {
  display: flex;
  justify-content: flex-end;
  margin-left: 40px;
}

.intro-text-desc {
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: flex-end;
  margin: 0;
}

.intro-middle {
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
  width: 100%;
  margin-left: 20px;
}

.intro-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;

}

.intro-right {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 1000px;
  grid-column: 3;
}

.intro-pattern-curtain {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  background-image: url('assets/ui/2.png');
  background-size: 50px 50px;
  background-repeat: repeat;
  background-position: top left;
  filter: invert(83%) sepia(21%) saturate(1210%) hue-rotate(124deg) brightness(95%) contrast(90%);
}

.cabinet-door {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  background-color: #000000;
  background-image: url('assets/ui/2.png');
  background-size: 60px 60px;
  background-repeat: repeat;
  background-position: top left;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  will-change: transform, opacity;
}

@media (max-width: 1400px) {
  .cabinet-door {
    display: none !important;
  }
}

.cabinet-door.open.left-door {
  transform: translateX(100%);
  opacity: 0;
}

.cabinet-door.open.right-door {
  transform: translateX(calc(20% + 20px));
  opacity: 1;
}

.cabinet-door::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #79DED7;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.reveal-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  color: var(--color-mint);
  border: 2px solid var(--color-mint);
  border-radius: 50px;
  padding: 15px 50px;
  font-size: 20px;
  letter-spacing: 4px;
  font-weight: 800;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  box-shadow: 0 0 20px rgba(121, 222, 215, 0.2), inset 0 0 10px rgba(121, 222, 215, 0.1);
  animation: pulseButton 3s infinite;
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 20px rgba(121, 222, 215, 0.2), inset 0 0 10px rgba(121, 222, 215, 0.1);
  }

  50% {
    box-shadow: 0 0 40px rgba(121, 222, 215, 0.6), inset 0 0 20px rgba(121, 222, 215, 0.3);
  }

  100% {
    box-shadow: 0 0 20px rgba(121, 222, 215, 0.2), inset 0 0 10px rgba(121, 222, 215, 0.1);
  }
}

.reveal-btn:hover {
  background-color: var(--color-mint);
  color: #000;
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 50px rgba(121, 222, 215, 0.8);
  animation: none;
}

.reveal-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
}

.left-door {
  left: 0;
  border-right: 2px solid #79DED7;
}

.right-door {
  right: 0;
  border-left: 2px solid #79DED7;
}

.intro-right {
  position: relative;
  /* Now just a spacer */
}

/* Animations (Smooth Glide Scroll) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay for staggering */
.intro-middle.animate-on-scroll {
  transition-delay: 0.2s;
}

.intro-right.animate-on-scroll {
  transition-delay: 0.4s;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
  .header-nav {
    gap: 14px;
  }

  .nav-link {
    font-size: 11px;
    letter-spacing: 0.8px;
  }

  .apply-btn-header {
    padding: 8px 14px;
    font-size: 11px;
  }

  .intro-section {
    grid-template-columns: 1fr;
    padding-right: var(--margin);
  }

  .intro-left {
    text-align: left;
    padding-right: 0;
  }

  .intro-flower {
    margin-left: 0;
  }

  .cta-section {
    flex-direction: column;
    gap: 40px;
  }

  .star-divider {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  :root {
    --margin: 24px;
  }
}

/* Gallery Section Accordion Redesign */
.gallery-section-new {
  background-color: #000000;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.music-gallery-container {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
}

/* ==========================================
   Music Gallery Section (Exact Screenshot Replica)
   ========================================== */
.music-gallery-desktop {
  display: block;
}

.music-gallery-mobile {
  display: none;
}

.music-gallery {
  width: 100%;
  background-color: #000000;
  padding-top: var(--section-v-margin, 80px);
  padding-bottom: var(--section-v-margin, 80px);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.music-gallery-container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
  box-sizing: border-box;
}

/* Row 1: Header Row (Title & Description Row) */
.music-gallery-frame-49 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  width: 100%;
  max-width: 1334px;
  margin: 60px auto 0 auto;
  align-items: flex-start;
  box-sizing: border-box;
}

.music-gallery-col-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.music-gallery-step-title {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-size: clamp(38px, 3.6vw, 54px);
  font-weight: 800;
  line-height: 0.95;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.music-gallery-title-our {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(36px, 3.4vw, 50px);
  line-height: 1;
  color: #79DED7;
  display: block;
  text-align: right;
  letter-spacing: 0.02em;
  margin-top: 4px;
  margin-bottom: -6px;
  z-index: 3;
}

.music-gallery-col-2 {
  text-align: left;
  padding-top: 8px;
}

.music-gallery-desc {
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #A0A0A0;
  margin: 0;
  max-width: 440px;
}

/* Row 2: Ribbon Row (WORLD under OUR, Ribbon Left & Right) */
.music-gallery-ribbon-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  width: 100%;
  max-width: 1334px;
  margin: 6px auto 28px auto;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}

.music-gallery-ribbon-col1 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  position: relative;
  overflow: visible;
  gap: 0;
}

.music-gallery-ribbon-left {
  flex: 1;
  height: 38px;
  min-height: 38px;
  margin-left: -50vw;
  background: url('assets/ui/1.png') repeat-x right center / auto 100%;
  filter: brightness(0) invert(1);
}

.music-gallery-title-world {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(36px, 3.4vw, 50px);
  line-height: 1;
  color: #79DED7;
  display: inline-block;
  text-align: right;
  letter-spacing: 0.02em;
  background: #000000;
  padding: 0 0 0 12px;
  margin: 0;
  z-index: 2;
  flex-shrink: 0;
}

.music-gallery-ribbon-right {
  height: 38px;
  min-height: 38px;
  width: calc(100% + 50vw);
  background: url('assets/ui/1.png') repeat-x left center / auto 100%;
  filter: brightness(0) invert(1);
  z-index: 1;
}

/* Row 3: Content Split (3-Column Grid with 1:2 Split) */
.music-gallery-content-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  padding: 0;
  max-width: 1334px;
  margin: 10px auto 0 auto;
  width: 100%;
  box-sizing: border-box;
}


.music-gallery-content-right {
  width: 100%;
}

/* Accordion Styles (.music-gallery-accordion) */
.music-gallery-accordion {
  width: 100%;
  max-width: 884px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #FFFFFF;
  margin: 0;
  padding: 0;
}

.music-gallery-accordion .accordion-item,
.music-gallery-accordion .accordion-header,
.music-gallery-accordion .accordion-content {
  margin: 0;
  padding: 0;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #FFFFFF;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  max-width: 884px;
  box-sizing: border-box;
}

/* Frame 198 Specs - Completely Flush Accordion Buttons */
.accordion-header {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  width: 100%;
  max-width: 884px;
  height: 53px;
  border: none;
  background: transparent;
  color: #FFFFFF;
  margin: 0;
  position: relative;
  top: 0;
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-align: left;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.accordion-header>span:first-child {
  background: transparent;
  padding-right: 0;
  line-height: 1;
}

.accordion-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  color: #FFFFFF;
  background: transparent;
  position: relative;
  top: 0;
}

.accordion-icon {
  font-size: 13px;
  color: #FFFFFF;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease;
  opacity: 0;
  overflow: hidden;
}

.accordion-item.active .accordion-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

/* Scrollable Playlist Box & Custom Scrollbar matching News Section */
.music-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 4px 12px 0 0;
  margin: 0;
  box-sizing: border-box;
  max-height: 480px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar matching News Section */
.music-grid::-webkit-scrollbar {
  width: 6px;
}

.music-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.music-grid::-webkit-scrollbar-thumb {
  background: #79DED7;
  border-radius: 10px;
}

.music-grid::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

.music-grid-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.music-img-wrapper {
  position: relative;
  width: 32%;
  flex: 0 0 32%;
  max-width: 32%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background: #111111;
}

.music-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.music-img-wrapper:hover img {
  transform: scale(1.04);
}

.music-meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  min-width: 0;
}

.music-item-title {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px 0;
  line-height: 1.25;
}

.music-item-desc {
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 760px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1439px) {
  .music-gallery {
    padding: 0 !important;
    background: #000000 !important;
  }

  .music-gallery-desktop {
    display: none !important;
  }

  .music-gallery-mobile {
    display: block !important;
    width: 100%;
    background: #000000;
    padding: 0;
    box-sizing: border-box;
  }

  .mg-mobile-container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 clamp(16px, 4vw, 40px);
    box-sizing: border-box;
    background: #000000;
  }

  /* Music Gallery - 2 (Header Section) */
  .mg-mobile-header-block {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(32px, 5vw, 48px) 0 24px 0;
    gap: 24px;
    width: 100%;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mg-mobile-frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 100%;
  }

  .mg-mobile-title {
    width: 100%;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 28px;
    line-height: 110%;
    color: #FFFFFF;
    margin: 0;
  }

  .mg-mobile-title .mint-accent {
    color: #86D7D7;
  }

  .mg-mobile-desc {
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    color: #D7D7D7;
    margin: 0;
  }

  .mg-subscribe-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 0px;
    width: 100%;
    height: 51px;
    background: #86D7D7;
    border-radius: 8px;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 1px;
    color: #0A0A0A;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mg-subscribe-btn:active {
    transform: scale(0.98);
    opacity: 0.9;
  }

  /* Frame 1000008354 (Tabs) */
  .mg-mobile-tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 16px;
    gap: 44px;
    width: 100%;
    height: 57px;
    box-sizing: border-box;
  }

  .mg-tab-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 4px;
    gap: 10px;
    height: 56px;
    background: transparent;
    border: none;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
    transition: color 0.2s ease, border-bottom 0.2s ease;
  }

  .mg-tab-btn.active {
    height: 57px;
    border-bottom: 1px solid #86D7D7;
    color: #FFFFFF;
  }

  /* Youtube Playlists (Featured Card) */
  .mg-featured-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0 32px 0;
    gap: 12px;
    isolation: isolate;
    width: 100%;
    background: #000000;
    box-sizing: border-box;
  }

  .mg-video-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 540px;
    background: #000000;
    overflow: hidden;
    border-radius: 12px;
  }

  .mg-video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Frame 56 (Open Link) */
  .mg-open-link-btn {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 8px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 93%;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 6px 14px;
    border-radius: 6px;
    z-index: 2;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .mg-open-link-btn:active {
    transform: translate(-50%, -50%) scale(0.96);
    background: rgba(0, 0, 0, 0.75);
  }

  .mg-watermark {
    position: absolute;
    bottom: 10px;
    right: 14px;
    color: #FFFFFF;
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    font-size: 20px;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  }

  /* Frame 1000008358 (Meta Row) */
  .mg-card-meta {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Frame 1000008355 (Avatar) */
  .mg-channel-avatar {
    width: 51px;
    height: 49px;
    background: #000000;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .mg-avatar-text {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
  }

  /* Frame 1000008357 (Title & Stats) */
  .mg-meta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    flex-grow: 1;
    min-width: 0;
  }

  .mg-meta-title {
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Frame 1000008356 (Meta Stats Row) */
  .mg-meta-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 4px;
    font-family: 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 93%;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
  }

  .mg-stat-dot {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #D9D9D9;
    display: inline-block;
  }

  /* Frame 1000008359 (Thumbnail Tray) */
  .mg-thumbs-tray {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 16px 16px;
    gap: 6px;
    width: 100%;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mg-thumbs-tray::-webkit-scrollbar {
    display: none;
  }

  .mg-thumb-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 99px;
    flex: 0 0 99px;
    cursor: pointer;
  }

  .mg-thumb-img-box {
    width: 99px;
    height: 56.66px;
    border-radius: 4px;
    overflow: hidden;
    background: #111;
    border: 1.5px solid transparent;
    transition: border-color 0.2s ease;
  }

  .mg-thumb-item.active .mg-thumb-img-box {
    border-color: #86D7D7;
  }

  .mg-thumb-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .mg-thumb-label {
    width: 99px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 130%;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
  }
}

/* Mobile Responsiveness for Gallery */
@media (max-width: 900px) {
  .gallery-header-complex {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .title-top,
  .desc-top,
  .squiggle-left,
  .title-bottom,
  .squiggle-right {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .squiggle-left,
  .squiggle-right {
    min-height: 40px;
  }

  .swiper-slide {
    width: 320px;
    height: 180px;
  }

  .gallery-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

/* ------------------------------------- */
/* Journey Section Styles */
/* ------------------------------------- */

.journey-section {
  background-color: #FFF200;
  color: #000000;
  padding-top: var(--section-v-margin);
  padding-bottom: var(--section-v-margin);
  position: relative;
}

.journey-squiggle-top {
  position: relative;
  width: 100%;
  height: 80px;
  background-color: #FFF200;
  margin-top: 0;
  margin-bottom: 50px;
}

.journey-squiggle-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/ui/9999.png') repeat-x center / auto 100%;
  pointer-events: none;
}

.journey-container {
  width: 100%;
  max-width: 1334px;
  margin: 0 auto;
  padding-left: 52px;
  padding-right: 52px;
  box-sizing: border-box;
}

.journey-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
  align-items: baseline;
  box-sizing: border-box;
}

.journey-title-box {
  grid-column: 1;
  text-align: right;
  justify-self: end;
  width: 100%;
}

.journey-title {
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  color: #000000;
  text-align: right;
  letter-spacing: -0.5px;
}

.journey-title .highlight-journey {
  font-style: italic;
  font-weight: 900;
  font-size: 56px;
}

.journey-text-box {
  grid-column: 2;
  font-size: 14px;
  color: #000000;
  line-height: 1.45;
  font-family: 'Figtree', var(--font-body), sans-serif;
  text-align: left;
  margin-bottom: 4px;
}

.journey-tabs-container {
  width: 100%;
}

.journey-tabs {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  margin-bottom: -1.5px;
}

.tab-btn {
  background: transparent;
  border: 1.5px solid #000000;
  padding: 8px 18px;
  border-radius: 0 28px 0 0;
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 127%;
  letter-spacing: 0.18em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  margin-right: 0;
}

.tab-btn .tab-flower-icon {
  height: 1.1em;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  transition: filter 0.15s ease;
  filter: brightness(0);
}

.tab-btn.active,
.tab-btn:hover {
  background-color: #000000;
  color: #FFFA3B;
  border-color: #000000;
}

.tab-btn.active .tab-flower-icon,
.tab-btn:hover .tab-flower-icon {
  filter: brightness(0) saturate(100%) invert(91%) sepia(98%) saturate(1450%) hue-rotate(359deg) brightness(102%) contrast(105%);
}

.journey-panels {
  width: 100%;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.journey-divider {
  border: none;
  border-top: 1px solid #000000;
  margin: 0 0 40px 0;
}

/* Sub-Header: YOUR VIDEO OF THE MONTH */
.journey-subheader {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 35px;
  align-items: baseline;
  box-sizing: border-box;
}

.subheader-title-box {
  grid-column: 1;
  text-align: right;
  justify-self: end;
  width: 100%;
}

.subheader-title {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  color: #000000;
  text-align: right;
  letter-spacing: -0.5px;
}

.subheader-title .highlight-subheader {
  font-style: italic;
  font-weight: 900;
  font-size: 34px;
}

.subheader-text-box {
  grid-column: 2;
  font-size: 14px;
  color: #000000;
  line-height: 1.45;
  font-family: 'Figtree', var(--font-body), sans-serif;
  text-align: left;
  margin-bottom: 2px;
}

/* 3-Column Community Cards Grid */
.community-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.community-card {
  border: 1px solid #000000;
  padding: 12px;
  background: transparent;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid #000000;
  background: #000000;
}

.card-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-video-wrapper .video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #000000;
  color: #ffffff;
  padding: 2px 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.community-card .card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #000000;
  margin-top: 12px;
  margin-bottom: 6px;
  padding: 0;
}

.community-card .card-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  color: #000000;
  margin: 4px 0 8px 0;
  padding: 0;
}

.community-card .card-excerpt {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.4;
  color: #000000;
  margin: 0;
  padding: 0;
  flex: 1;
}

/* Asymmetrical Press Grid Layout matching reference screenshot */
.press-grid-asym {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  gap: 24px;
  align-items: start;
}

.press-main-article {
  border: 1.5px solid #000000;
  padding: 16px;
  box-sizing: border-box;
  background: transparent;
  display: flex;
  flex-direction: column;
}

.press-image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1.5px solid #000000;
  margin-bottom: 16px;
}

.press-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.press-headline {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.12;
  color: #000000;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.press-excerpt {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 24px;
}

.btn-full-article {
  display: inline-block;
  align-self: flex-start;
  border: 1.5px solid #000000;
  padding: 10px 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #000000;
  text-decoration: none;
  background: transparent;
  transition: all 0.25s ease;
}

.btn-full-article:hover {
  background: #000000;
  color: #FFFA3B;
}

/* Press Side Column - Dynamically matched to main article height with full scroll support */
.press-side-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  padding-right: 8px;
  box-sizing: border-box;
  overscroll-behavior: contain;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
}

.press-side-column::-webkit-scrollbar {
  width: 5px;
}

.press-side-column::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.press-side-column::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 10px;
}

.press-side-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.press-side-card {
  border: 1.5px solid #000000;
  padding: 12px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background: transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.press-side-card-link:hover .press-side-card {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.side-card-img-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1.5px solid #000000;
  overflow: hidden;
  margin-bottom: 10px;
}

.side-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.22;
  color: #000000;
  margin: 6px 0 8px 0;
  letter-spacing: -0.3px;
}

.side-card-excerpt {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: #000000;
  margin: 0;
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
  position: relative;
  border-bottom: 1px solid #000;
  flex: 0 0 auto;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.journey-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.featured-card .card-img-wrapper img {
  aspect-ratio: 16/10;
}

.card-open-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #000;
  color: #FFF200;
  padding: 5px 15px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.journey-card:hover .card-open-btn {
  transform: scale(1.05);
}

.card-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 10px 15px 0;
  font-weight: 600;
}

.card-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  padding: 10px 15px;
  margin: 0;
}

.featured-card .card-title {
  font-size: 32px;
  padding-bottom: 15px;
}

.card-excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 0 15px 15px;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

/* Header Reactivity - Keep semi-translucent glass navbar */
.header.theme-solid-black {
  background: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* =======================================================
   Journey Section: Dual-Container Responsive Logic
   ======================================================= */
.journey-desktop {
  display: block;
}

.journey-mobile {
  display: none;
}

@media (max-width: 1439px) {
  .journey-desktop {
    display: none !important;
  }

  .journey-section {
    padding: 0 !important;
    background: #FFF200 !important;
    color: #000000 !important;
    overflow: hidden !important;
    width: 100%;
  }

  .journey-mobile {
    display: block !important;
    width: 100%;
    background: #FFF200;
    color: #000000;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden !important;
  }

  .jm-mobile-container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 clamp(16px, 4vw, 40px);
    box-sizing: border-box;
    background: #FFF200;
    overflow: hidden !important;
  }

  /* Header Block */
  .jm-mobile-header-block {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(32px, 5vw, 48px) 0 20px 0;
    gap: 20px;
    width: 100%;
    background: #FFF200;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .jm-mobile-frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 100%;
  }

  .jm-mobile-title {
    width: 100%;
    font-family: 'Figtree', var(--font-heading), sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 28px;
    line-height: 105%;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.3px;
  }

  .jm-mobile-title .highlight-journey {
    font-style: italic;
    font-weight: 900;
    font-size: 30px;
    color: #000000;
  }

  .jm-mobile-desc {
    width: 100%;
    font-family: 'Open Sans', var(--font-body), sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #111111;
    margin: 0;
  }

  /* Tabs in Middle */
  .jm-mobile-tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 8px;
    gap: 28px;
    width: 100%;
    height: 54px;
    box-sizing: border-box;
  }

  .jm-tab-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 4px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: rgba(0, 0, 0, 0.55);
    box-sizing: border-box;
    transition: color 0.25s ease, border-bottom 0.25s ease;
  }

  .jm-tab-btn.active {
    font-weight: 800;
    color: #000000;
    border-bottom: 2.5px solid #000000;
  }

  /* Featured Player Card */
  .jm-featured-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 0 0;
    gap: 14px;
    width: 100%;
    background: #FFF200;
  }

  /* Video of the Month Banner (Community Tab) */
  .jm-video-month-banner {
    width: 100%;
    margin-bottom: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .jm-video-month-title {
    font-family: 'Figtree', var(--font-heading), sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    margin: 0 0 4px 0;
    line-height: 1.1;
    letter-spacing: -0.2px;
  }

  .jm-video-month-title .highlight-journey {
    font-style: italic;
    font-weight: 900;
    font-size: 22px;
    color: #000000;
  }

  .jm-video-month-desc {
    font-family: 'Open Sans', var(--font-body), sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: #222222;
    margin: 0;
  }

  .jm-video-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 520px;
    border-radius: 12px;
    overflow: hidden;
    background: #101010;
  }

  .jm-video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .jm-open-link-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #FFF200;
    border: 1px solid rgba(255, 242, 0, 0.4);
    border-radius: 6px;
    padding: 6px 12px;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 4;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .jm-watermark {
    position: absolute;
    top: 12px;
    left: 14px;
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 3;
  }

  .jm-card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding-bottom: 6px;
  }

  .jm-source-badge {
    align-self: flex-start;
    background: #000000;
    color: #FFF200;
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #000000;
  }

  .jm-meta-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .jm-meta-title {
    font-family: 'Figtree', sans-serif;
    font-size: 16.5px;
    font-weight: 800;
    line-height: 1.3;
    color: #000000;
    margin: 0;
  }

  .jm-meta-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 13.5px;
    line-height: 1.45;
    color: #222222;
    margin: 0;
  }

  .jm-meta-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #444444;
  }

  .jm-stat-dot {
    width: 3px;
    height: 3px;
    background-color: #000000;
    border-radius: 50%;
  }

  /* Thumbnail Scroll Tray */
  .jm-thumbs-tray {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px;
    gap: 10px;
    width: 100%;
    background: #FFF200;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .jm-thumbs-tray::-webkit-scrollbar {
    display: none;
  }

  .jm-thumb-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 110px;
    flex-shrink: 0;
    cursor: pointer;
    box-sizing: border-box;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .jm-thumb-item:active {
    transform: scale(0.96);
  }

  .jm-thumb-img-wrapper {
    position: relative;
    width: 110px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: #141414;
    border: 1.5px solid rgba(0, 0, 0, 0.25);
  }

  .jm-thumb-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .jm-thumb-item.active .jm-thumb-img-wrapper {
    border-color: #000000;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
  }

  .jm-thumb-title {
    font-family: 'Figtree', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.25;
    color: #000000;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Comments Cycling Box - Full Bleed 100vw Screen Width */
  .jm-comments-box {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 28px 24px 40px 24px;
    box-sizing: border-box;
    background: #000000;
    border-top: 2px solid #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .jm-comments-header,
  .jm-comment-card {
    width: 100%;
    max-width: 480px;
    box-sizing: border-box;
  }

  .jm-comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .jm-comments-tag {
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #FFF200;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .jm-comments-dots {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .jm-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .jm-dot.active {
    background: #FFF200;
    transform: scale(1.3);
  }

  .jm-comment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .jm-comment-text {
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-size: 13.5px;
    line-height: 1.5;
    color: #F0F0F0;
    margin: 0;
  }

  .jm-comment-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .jm-comment-author {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
  }

  .jm-comment-platform {
    font-family: 'Open Sans', sans-serif;
    font-size: 11.5px;
    color: #FFF200;
    display: flex;
    align-items: center;
    gap: 5px;
  }
}

/* ------------------------------------- */
/* Partners Section (Two Page Variants) */
/* ------------------------------------- */
.partners-section {
  padding: 40px 0;
  overflow: hidden;
  width: 100%;
}

/* 1. Home Page Variant: Brand Blue Background with White Text */
.partners-section.partners-home,
.partners-section:not(.partners-about) {
  background-color: #79DED7;
  color: #000000;
}

.partners-section.partners-home .partners-title-our,
.partners-section.partners-home .partners-title-main,
.partners-section:not(.partners-about) .partners-title-our,
.partners-section:not(.partners-about) .partners-title-main {
  color: #000000;
}

.partners-section.partners-home .partners-ticker-container,
.partners-section:not(.partners-about) .partners-ticker-container {
  border-top: 1px solid rgb(0, 0, 0);
  border-bottom: 1px solid rgba(0, 0, 0);
}

.partners-section.partners-home .partner-logo-item img,
.partners-section:not(.partners-about) .partner-logo-item img {
  filter: none;
  opacity: 1;
}

/* 2. About Us Page Variant: Black Background with White Text */
.partners-section.partners-about {
  background-color: #000000;
  color: #FFFFFF;
}

.partners-section.partners-about .partners-title-our,
.partners-section.partners-about .partners-title-main {
  color: #FFFFFF;
}

.partners-section.partners-about .partners-ticker-container {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.partners-section.partners-about .partner-logo-item img {
  filter: none;
  opacity: 1;
}

/* 3-Column Header Row matching Intro section grid */
.partners-header-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 20px auto;
  padding-left: 52px;
  padding-right: 52px;
  box-sizing: border-box;
  align-items: baseline;
}

.partners-col-1 {
  text-align: left;
  justify-self: start;
}

.partners-col-2,
.partners-col-3 {
  display: block;
}

.partners-title {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.partners-title-our {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-size: 44px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0;
}

.partners-title-main {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-size: 44px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}

.partners-ticker-container {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.partners-ticker {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: scrollTicker 35s linear infinite;
  will-change: transform;
}

.ticker-set {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 120px;
  padding-right: 120px;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 140px;
  box-sizing: border-box;
}

.partner-logo-item img {
  max-height: 55px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.partner-logo-item img:hover {
  opacity: 1;
  transform: scale(1.06);
}

.partner-logo-item.logo-llmc {
  min-width: 180px;
}

.partner-logo-item.logo-llmc img {
  max-height: 105px;
  max-width: 260px;
  height: 105px;
  width: auto;
}

.partner-logo-item img:hover {
  transform: scale(1.1);
}

.ticker-wrapper {
  position: relative;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 0;
  display: flex;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 120px;
  padding-left: 120px;
  width: max-content;
  animation: scrollTicker 40s linear infinite;
  will-change: transform;
}

.partner-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

@keyframes scroll-ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =======================================================
   Our Partners: Dual-Container Responsive Logic
   ======================================================= */
.partners-desktop {
  display: block;
}

.partners-mobile {
  display: none;
}

@media (max-width: 1439px) {
  .partners-desktop {
    display: none !important;
  }

  .partners-section.partners-home {
    background-color: #87D5D1; /* Mint background matching reference */
    padding: 60px 20px;
    box-sizing: border-box;
  }

  .partners-mobile {
    display: block !important;
    width: 100%;
  }

  .pm-mobile-container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 clamp(16px, 4vw, 40px);
    box-sizing: border-box;
  }

  /* Header */
  .pm-mobile-title {
    font-family: 'Figtree', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  /* Button Grid */
  .pm-button-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
  }

  /* Partner Button */
  .pm-partner-btn {
    background-color: #0d0d0d;
    color: #87D5D1;
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
  }

  .pm-partner-btn:active {
    transform: scale(0.96);
    opacity: 0.9;
  }
}

/* ------------------------------------- */
/* Footer Section (Figma Screenshot Match) */
/* ------------------------------------- */
.main-footer {
  width: 100%;
  background: #000000;
  color: #FFFFFF;
  font-family: 'Figtree', var(--font-heading), sans-serif;
  padding: 40px var(--margin) 30px var(--margin);
  box-sizing: border-box;
  position: relative;
  z-index: 8;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  width: 100%;
  box-sizing: border-box;
}

.footer-col.col-1 {
  grid-column: 1;
}

.footer-col.col-2 {
  grid-column: 2;
}

.footer-col.col-3 {
  grid-column: 3;
  width: 100%;
}

/* Top Row: Logo & Social Icons */
.footer-row-top {
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgb(255, 255, 255);
}

.footer-logo {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-block;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.footer-social-icons a {
  color: #FFFFFF;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-icons a:hover {
  color: #79DED7;
  transform: translateY(-2px);
}

/* Middle Row: 3-Column Grid */
.footer-row-middle {
  align-items: flex-start;
  padding: 36px 0 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav-list li a {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-nav-list li a.footer-nav-brand {
  color: #FFFFFF;
  font-weight: 700;
}

.footer-nav-list li a:hover {
  color: #79DED7;
}

/* Apply to Our Camp Block (Column 3 - Matches Reaction Cards 3rd Column) */
.footer-apply-box {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.apply-title {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin: 0 0 6px 0;
  text-transform: uppercase;
}

.apply-subtitle {
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.drive-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 16px;
}

.drive-input {
  flex: 1;
  width: 100%;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  padding: 11px 14px;
  color: #FFFFFF;
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.drive-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.drive-input:focus {
  border-color: #79DED7;
}

.drive-upload-btn {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.drive-upload-btn:hover {
  border-color: #79DED7;
  color: #79DED7;
  background: rgba(121, 222, 215, 0.1);
}

.apply-now-btn {
  align-self: flex-start;
  background: #79DED7;
  color: #080A0C;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.apply-now-btn:hover {
  background: #86D7D7;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(121, 222, 215, 0.3);
}

.apply-feedback-msg {
  margin-top: 12px;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 8px 12px;
  border-radius: 4px;
}

.apply-feedback-msg.success {
  background: rgba(121, 222, 215, 0.15);
  border: 1px solid #79DED7;
  color: #79DED7;
}

.apply-feedback-msg.error {
  background: rgba(255, 100, 100, 0.15);
  border: 1px solid #ff6464;
  color: #ff6464;
}

/* Bottom Row: 2 Columns Layout (col-1 uses 2/3 space, col-2 uses 1/3 space) */
.footer-row-bottom {
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 24px;
}

.footer-row-bottom .footer-col.col-1 {
  flex: 0 0 66.666%;
  max-width: 66.666%;
}

.footer-row-bottom .footer-col.col-2 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

.footer-utility-links {
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-utility-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-utility-links a:hover {
  color: #FFFFFF;
}

.dot-sep {
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copyright {
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}

/* =======================================================
   Footer: Dual-Container Responsive Logic
   ======================================================= */
.footer-desktop {
  display: block;
}

.footer-mobile {
  display: none;
}

@media (max-width: 1439px) {
  .footer-desktop {
    display: none !important;
  }

  .main-footer {
    background-color: #0c0c0c;
    padding: 48px 24px 36px 24px;
    box-sizing: border-box;
    width: 100%;
  }

  .footer-mobile {
    display: block !important;
    width: 100%;
  }

  .mf-container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 0 clamp(16px, 4vw, 40px);
    box-sizing: border-box;
  }

  /* Logo */
  .mf-logo a {
    font-family: 'Figtree', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 0.95;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.04em;
    display: inline-block;
  }

  /* Apply Header */
  .mf-apply-block {
    display: flex;
    flex-direction: column;
  }

  .mf-apply-title {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 6px 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .mf-apply-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #8c8c8c;
    margin: 0 0 16px 0;
  }

  /* Form Elements */
  .mf-apply-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mf-input-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
  }

  .mf-input {
    flex: 1;
    background-color: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-size: 14px;
    color: #FFFFFF;
    outline: none;
    box-sizing: border-box;
  }

  .mf-input::placeholder {
    color: #707070;
    font-style: italic;
  }

  .mf-input:focus {
    border-color: #79DED7;
  }

  .mf-upload-btn {
    width: 52px;
    background-color: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
  }

  .mf-upload-btn:hover,
  .mf-upload-btn:active {
    border-color: #79DED7;
    color: #79DED7;
  }

  .mf-submit-btn {
    width: 100%;
    padding: 15px 20px;
    background-color: #79DED7;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mf-submit-btn:active {
    transform: scale(0.98);
    opacity: 0.9;
  }

  /* Thin Divider */
  .mf-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 4px 0 0 0;
  }

  /* Bottom Copyright & Social Icons */
  .mf-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mf-copyright {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #707070;
    letter-spacing: 0.02em;
  }

  .mf-social-links {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .mf-social-links a {
    color: #FFFFFF;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .mf-social-links a:hover,
  .mf-social-links a:active {
    color: #79DED7;
  }
}

/* --- Our Humnavas Section --- */
/* --- Our Humnavas Section (Screenshot Replica) --- */
.humnavas-section {
  width: 100%;
  background-color: #000000;
  padding: var(--section-v-margin) 0;
  box-sizing: border-box;
}

.humnavas-header-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 40px auto;
  padding: 0 52px;
  box-sizing: border-box;
  align-items: flex-start;
}

.humnavas-header-left {
  grid-column: 1;
  text-align: right;
  justify-self: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.humnavas-title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin: 0;
}

.humnavas-title-our {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-align: right;
}

.humnavas-title-main {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-size: 56px;
  font-weight: 800;
  font-style: italic;
  color: #79DED7;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-align: right;
}

.humnavas-header-right {
  grid-column: 2;
  text-align: left;
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-top: 4px;
}

.humnavas-desc {
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-size: 13.5px;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-align: left;
  max-width: 100%;
}

/* Tabs Bar */
.humnavas-tabs-bar {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 0;
  margin-bottom: 40px;
}

.humnavas-tabs-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
  box-sizing: border-box;
}

.humnavas-tabs-wrapper {
  grid-column: 2;
  display: flex;
  gap: 32px;
  align-items: center;
}

.humnavas-tab {
  background: transparent;
  border: none;
  color: rgba(254, 254, 254, 0.4);
  padding: 6px 0;
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.humnavas-tab .tab-flower-icon {
  width: 1em;
  height: 1em;
  font-size: 14px;
  object-fit: contain;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.humnavas-tab.active,
.humnavas-tab:hover {
  color: #79DED7;
}

.humnavas-tab.active .tab-flower-icon,
.humnavas-tab:hover .tab-flower-icon {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(83%) sepia(21%) saturate(1210%) hue-rotate(124deg) brightness(95%) contrast(90%);
}

/* Map Outer */
.map-wrapper-outer {
  width: 100%;
  margin: 0 auto;
  padding-left: var(--margin);
  padding-right: var(--margin);
  box-sizing: border-box;
}

.humnavas-map-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #080a0c;
}

.map-wrapper {
  position: relative;
  width: 100%;
  transition: transform 0.3s ease;
}

/* Dotted SVG World Map Styles */
.map-viewport {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #080a0c;
  transform: translateZ(0);
  contain: layout paint;
}

#map-layer {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: 67.08% 55.29%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  shape-rendering: geometricPrecision;
}

/* Dynamic zoom transform handled by script.js for dead-center alignment */

#dots-group,
#pak-dots-group {
  opacity: 0.6;
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.map-viewport.zoomed #dots-group,
.map-viewport.zoomed #pak-dots-group {
  opacity: 0.35;
}

.dot {
  fill: #86D7D7;
}

/* Cluster Marker & Micro-Nodes */
.cluster {
  cursor: pointer;
}

.cluster-glow {
  fill: #79DED7;
  opacity: 0.4;
  animation: clusterPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes clusterPulse {
  0% {
    r: 10;
    opacity: 0.4;
  }

  70% {
    r: 26;
    opacity: 0;
  }

  100% {
    r: 26;
    opacity: 0;
  }
}

.cluster-core {
  fill: #79DED7;
  transition: opacity 300ms ease, transform 300ms ease;
  transform-origin: center;
  transform-box: fill-box;
}

.cluster-badge-text {
  fill: #000000;
  font-size: 11px;
  font-weight: 800;
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
  transition: opacity 300ms ease;
  font-family: 'Figtree', var(--font-heading), sans-serif;
}

.cluster-children {
  opacity: 0;
  transform: scale(0.4);
  transform-origin: center;
  transform-box: fill-box;
  transition: opacity 380ms ease 80ms, transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1) 80ms;
  pointer-events: none;
}

.map-viewport.zoomed .cluster-core,
.map-viewport.zoomed .cluster-badge-text {
  opacity: 0;
  transform: scale(0.5);
}

.map-viewport.zoomed .cluster-children {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

#pak-cluster .cluster-children {
  opacity: 1 !important;
  transform: scale(1) !important;
  pointer-events: auto !important;
}

#pak-cluster .cluster-core,
#pak-cluster .cluster-badge-text {
  display: none !important;
}

/* Airplay Heatmap Pins & Labels */
.pin {
  cursor: pointer;
}

.pin-glow {
  fill: #86D7D7;
  opacity: 0.28;
  transition: r 0.3s ease, opacity 0.3s ease;
}

.pin-core {
  fill: #ffffff;
  transition: r 0.3s ease;
}

.pin-value {
  font-size: 11px;
  font-weight: 700;
  fill: #0a0d0e;
  text-anchor: middle;
  dominant-baseline: central;
  font-family: 'Figtree', var(--font-heading), sans-serif;
  pointer-events: none;
}

.pin-label {
  font-size: 10.5px;
  font-weight: 600;
  fill: #ffffff;
  text-anchor: middle;
  font-family: 'Figtree', var(--font-body), sans-serif;
  pointer-events: none;
}

/* Pakistan Map Airplay Legend / Index Overlay */
.map-legend-index {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(14, 18, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
  max-width: 260px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  pointer-events: auto;
}

.map-legend-index .legend-title {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #86D7D7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-legend-index .legend-scale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.map-legend-index .legend-node {
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-legend-index .node-circle {
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(134, 215, 215, 0.5);
  display: inline-block;
}

.map-legend-index .node-circle.sm {
  width: 8px;
  height: 8px;
}

.map-legend-index .node-circle.lg {
  width: 18px;
  height: 18px;
}

.map-legend-index .node-label {
  font-size: 10.5px;
  font-weight: 600;
  color: #ffffff;
}

.map-legend-index .legend-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), #86D7D7, #ffffff);
}

.map-legend-index .legend-hint {
  font-size: 10px;
  color: #8aa0a2;
  line-height: 1.35;
}

.cluster-child {
  cursor: pointer;
}

.child-dot {
  fill: #79DED7;
  r: 6.5px;
  filter: drop-shadow(0 0 4px rgba(121, 222, 215, 0.8));
  cursor: pointer;
  transition: r 0.2s ease, fill 0.2s ease, filter 0.2s ease;
}

.cluster-child:hover .child-dot {
  r: 9.5px;
  fill: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));
}

.child-label {
  fill: #000000;
  font-size: 9px;
  font-weight: 800;
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
  font-family: 'Figtree', var(--font-heading), sans-serif;
}

.child-tag {
  fill: #86D7D7;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
  font-family: 'Figtree', var(--font-heading), sans-serif;
  text-transform: uppercase;
  transition: fill 0.2s ease, filter 0.2s ease;
}

.cluster-child:hover .child-tag {
  fill: #ffffff;
  filter: drop-shadow(0 0 6px rgba(134, 215, 215, 0.9));
}

.map-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  color: #79DED7;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(121, 222, 215, 0.3);
  padding: 4px 14px;
  border-radius: 999px;
  pointer-events: none;
  transition: opacity 200ms ease;
  letter-spacing: 0.03em;
  z-index: 5;
}

#world-map-canvas,
#pak-map-canvas,
.map-img {
  display: block;
  width: 100%;
  height: auto;
  background-color: #080a0c;
  user-select: none;
  pointer-events: none;
}

.map-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}

.map-btn {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.map-btn:hover {
  border-color: #79DED7;
  background: rgba(121, 222, 215, 0.1);
}

.map-dots-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #388E8E 2.5px, transparent 3px);
  background-size: 14px 14px;
  background-position: top left;
  -webkit-mask: url('assets/maps/world-map.svg') no-repeat center / 95% auto;
  mask: url('assets/maps/world-map.svg') no-repeat center / 95% auto;
}

.pak-dots-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #498B84 3px, transparent 3.5px);
  background-size: 14px 14px;
  background-position: top left;
  -webkit-mask: url('assets/maps/pakistan-map.svg') no-repeat center / 95% auto;
  mask: url('assets/maps/pakistan-map.svg') no-repeat center / 95% auto;
}

.map-node {
  position: absolute;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 5;
  transform: translate(-50%, -50%);
  transition: top 0.3s ease, left 0.3s ease;
}

.node-core {
  width: 3.2px;
  height: 3.2px;
  background-color: #79DED7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px #79DED7, 0 0 18px #79DED7;
}

.map-node.active-node .node-core,
.map-node:hover .node-core {
  background-color: #FFFFFF;
  box-shadow: 0 0 12px #79DED7, 0 0 24px #79DED7;
}

.node-glow {
  width: 24px;
  height: 24px;
  background-color: rgba(121, 222, 215, 0.5);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.artist-popup {
  position: absolute;
  background: #ffffff;
  border: 1.5px solid #000000;
  border-radius: 0px;
  padding: 18px 22px;
  width: 320px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -100%) scale(0.92);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: -12px;
  box-sizing: border-box;
}

.artist-popup::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #ffffff;
  filter: drop-shadow(0 2px 0 #000000);
  pointer-events: none;
}

.artist-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -100%) scale(1);
}

/* =======================================================
   Our Humnavas: Dual-Container Responsive Logic
   ======================================================= */
.humnavas-desktop {
  display: block;
}

.humnavas-mobile {
  display: none;
}

@media (max-width: 1439px) {
  .humnavas-desktop {
    display: none !important;
  }

  .humnavas-section {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .humnavas-mobile {
    display: block !important;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    min-height: auto !important;
    background-color: #000000;
    padding: 24px 0 48px 0;
    box-sizing: border-box;
    overflow: hidden !important;
  }

  .hn-mobile-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-sizing: border-box;
    overflow: hidden !important;
  }

  /* Header */
  .hn-mobile-header {
    padding: 0 24px;
    box-sizing: border-box;
    width: 100%;
  }

  .hn-mobile-title {
    font-family: 'Figtree', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    margin: 0 0 14px 0;
    text-transform: uppercase;
  }

  .hn-mobile-title .mint-accent {
    color: #51E2D4;
  }

  .hn-mobile-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #A0A0A0;
    margin: 0;
  }

  /* Swiper Coverflow Track */
  .hn-artists-swiper {
    width: 100%;
    max-width: 100%;
    padding: 16px 0;
    box-sizing: border-box;
    overflow: hidden !important;
  }

  .hn-card-slide {
    width: 270px !important;
    height: 380px !important;
    box-sizing: border-box;
    transition: opacity 0.35s ease, transform 0.35s ease;
    opacity: 0.45;
  }

  .hn-card-slide.swiper-slide-active {
    opacity: 1;
    z-index: 10;
  }

  /* Card Anatomy */
  .hn-artist-card {
    background-color: #0b0b0b;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    width: 100%;
  }

  .hn-card-visual {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-sizing: border-box;
  }

  .hn-artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    mix-blend-mode: normal;
  }

  .hn-card-info {
    padding: 20px 22px;
    background-color: #0d0d0d;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    box-sizing: border-box;
  }

  .hn-label-sub {
    font-family: 'Figtree', sans-serif;
    font-size: 11.5px;
    color: #777777;
    margin-bottom: 2px;
    display: block;
  }

  .hn-artist-name {
    font-family: 'Figtree', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
  }

  .hn-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
  }

  .hn-meta-val {
    font-family: 'Figtree', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
    line-height: 1.25;
  }

  .hn-card-footer-tag {
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    color: #555555;
    margin: 4px 0 0 0;
  }

  /* 4-Column Metric Stats Grid */
  .hn-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 0 20px;
    margin-top: 24px;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .hn-stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .hn-stat-num {
    font-family: 'Figtree', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #51E2D4;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .hn-stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 12.5px;
    color: #FFFFFF;
    font-weight: 500;
  }
}

.popup-avatar {
  width: 72px;
  height: 72px;
  background-color: #84DCD6;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.popup-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.popup-info h4 {
  margin: 0 0 4px 0;
  font-family: var(--font-heading), 'Figtree', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.popup-line {
  margin: 0 0 2px 0;
  font-family: 'Figtree', var(--font-body), sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #111111;
  line-height: 1.3;
}

.popup-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #79DED7;
  font-family: 'Figtree', var(--font-body), sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
}

.popup-link:hover {
  color: #4ebbb4;
  text-decoration: underline;
}

.close-popup {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  color: #888888;
  border: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: color 0.15s ease;
}

.close-popup:hover {
  color: #000000;
  align-items: center;
  justify-content: center;
}

/* YouTube Video Modal & Hover Play Overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-video-wrapper:hover .play-overlay {
  opacity: 1;
}

.play-overlay i {
  color: #79DED7;
  font-size: 32px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s ease;
}

.card-video-wrapper:hover .play-overlay i {
  transform: scale(1.15);
}

.yt-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.yt-video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.yt-video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.yt-video-modal-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  background: #000000;
  border: 1px solid #79DED7;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.yt-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.2s ease;
}

.yt-modal-close:hover {
  color: #79DED7;
}

/* ==========================================
   ABOUT US SECTION (Figma Frame 1000008341 Specs)
   ========================================== */
.about-us-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* ------------------------------------- */
/* Part 1: Yellow Section (#FFFA3B) */
/* ------------------------------------- */
.about-meaning-frame {
  width: 100%;
  background-color: #FFFA3B;
  padding: 100px 52px 100px 52px;
  position: relative;
  box-sizing: border-box;
}

.about-meaning-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
  box-sizing: border-box;
}

.about-meaning-left {
  width: 432px;
  flex: 0 0 432px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-meaning-title {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 0.93;
  letter-spacing: 0.02em;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
}

.about-meaning-desc {
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #000000;
  margin: 0;
}

.about-meaning-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.calligraphy-grid-box {
  position: relative;
  width: 555px;
  height: 432px;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.calligraphy-line {
  position: absolute;
  pointer-events: none;
}

.line-dashed-center {
  width: 100%;
  height: 0;
  border-top: 1px dashed #000000;
  top: 50%;
  left: 0;
}

.line-dashed-diag-1 {
  width: 120%;
  height: 0;
  border-top: 1px dashed #000000;
  top: 50%;
  left: -10%;
  transform: rotate(45deg);
}

.line-dashed-diag-2 {
  width: 120%;
  height: 0;
  border-top: 1px dashed #000000;
  top: 50%;
  left: -10%;
  transform: rotate(-45deg);
}

.calligraphy-text-wrapper {
  z-index: 2;
  text-align: center;
}

.urdu-calligraphy {
  font-family: 'Figtree', 'Noto Naskh Arabic', serif;
  font-size: 140px;
  font-weight: 900;
  color: #000000;
  line-height: 1;
  display: block;
}

.about-ribbon-track {
  width: 100%;
  height: 76px;
  margin-top: 60px;
  background-color: #FFFA3B;
  background-image: url('assets/ui/Squiggle-about.png');
  background-repeat: repeat-x;
  background-position: center center;
  background-size: auto 76px;
}

/* ------------------------------------- */
/* Part 2: Black Section (#000000) */
/* ------------------------------------- */
.about-team-frame {
  width: 100%;
  background-color: #000000;
  padding: 100px 52px;
  box-sizing: border-box;
}

.about-team-container {
  width: 100%;
  max-width: 1336px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 90px;
  align-items: center;
}

.about-team-main-title {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
  max-width: 1336px;
  text-transform: uppercase;
}

.about-team-main-title .mint-accent {
  color: #86D7D7;
  font-style: italic;
  font-weight: 800;
}

.about-team-roles {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.about-role-item {
  border-top: 1px solid #FFFFFF;
  padding: 24px 20px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.about-role-item:last-child {
  border-bottom: 1px solid #FFFFFF;
}

.about-role-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.about-role-title-box {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 450px;
}

.role-diamond-icon {
  color: #86D7D7;
  font-size: 16px;
}

.role-name {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.16em;
  color: #86D7D7;
  text-transform: uppercase;
}

.about-role-desc {
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #FFFFFF;
  margin: 0;
  max-width: 680px;
  flex: 1;
}

.about-down-arrow-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.about-down-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  background: transparent;
  color: #FFFFFF;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.about-down-arrow-btn:hover {
  border-color: #86D7D7;
  color: #86D7D7;
  transform: translateY(4px);
}

/* ------------------------------------- */
/* Part 3: Season Filter & Directory (#86D7D7) */
/* ------------------------------------- */
.about-seasons-frame {
  width: 100%;
  background-color: #86D7D7;
  padding: 100px 52px 80px 52px;
  box-sizing: border-box;
}

.about-seasons-container {
  width: 100%;
  max-width: 1336px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.season-tabs-bar {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  border-bottom: 1px solid #000000;
  padding-bottom: 16px;
}

.season-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  border-radius: 0px 30px 0px 0px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.season-tab.active {
  background: #000000;
  color: #86D7D7;
  border: 1px solid #000000;
}

.season-tab:not(.active) {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
}

.season-icon {
  font-size: 10px;
}

.chapter-header-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.chapter-title {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 40px;
  line-height: 0.93;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
}

.chapter-overview-box {
  border-top: 1px solid #000000;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.overview-heading {
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  color: #000000;
  margin: 0;
}

.overview-desc {
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: #000000;
  margin: 0;
  max-width: 1328px;
}

.directory-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.directory-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.directory-title {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 36px;
  color: #000000;
  margin: 0;
  flex-shrink: 0;
  text-transform: uppercase;
}

.directory-diamond-line {
  font-size: 14px;
  color: #000000;
  letter-spacing: 0.4em;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.75;
}

.directory-card-box {
  width: 100%;
  background: #000000;
  border: 1px solid #000000;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 408px 1fr 432px;
  gap: 24px;
  padding: 28px;
  box-sizing: border-box;
  color: #FFFFFF;
}

.member-list-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 450px;
  overflow-y: auto;
}

.member-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: color 0.2s ease;
}

.member-item.active .member-name {
  color: #FFFA3B;
  font-weight: 600;
}

.member-item.active .member-role {
  color: #FFFA3B;
}

.member-item:not(.active) .member-name {
  color: #FFFFFF;
}

.member-item:not(.active) .member-role {
  color: rgba(255, 255, 255, 0.7);
}

.member-name {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-size: 20px;
  line-height: 1;
}

.member-role {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
}

.member-detail-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.detail-member-name {
  font-family: 'Figtree', var(--font-heading), sans-serif;
  font-size: 32px;
  color: #FFFFFF;
  margin: 0;
}

.detail-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  color: #86D7D7;
}

.detail-text {
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0;
}

.detail-val {
  font-family: 'Open Sans', var(--font-body), sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  margin: 0;
}

.member-photo-panel {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 20px;
  box-sizing: border-box;
}

.photo-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #111111;
}

.photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .about-meaning-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-meaning-left,
  .about-meaning-right {
    width: 100%;
  }

  .directory-card-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .member-detail-panel,
  .member-photo-panel {
    border-left: none;
    padding-left: 0;
  }
}

.yt-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
}

.yt-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Mobile View Hero Specifications (Full Screen Width) */
@media (max-width: 768px) {
  .hero-section {
    width: 100vw;
    max-width: 100%;
    height: 95vh;
    min-height: 95vh;
    position: relative;
    overflow: hidden;
  }

  .hero-pause-btn {
    width: 58px;
    height: 58px;
    font-size: 20px;
  }

  .social-icons {
    right: 14px !important;
    gap: 24px !important;
    padding: 10px 0 !important;
  }

  .social-icons a {
    font-size: 19px !important;
    width: 28px !important;
    height: 28px !important;
  }

  .hero-modal-card {
    max-width: 320px;
    padding: 28px 20px 24px 20px;
  }

  .hero-modal-title {
    font-size: 22px;
  }
}

/* Hide Floating Vinyl Music Player on screens less than 1024px */
@media (max-width: 1023px) {
  .spotify-vinyl-widget,
  .vinyl-disc-btn,
  .vinyl-playlist-card {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 480px) {
  .social-icons {
    right: 10px !important;
    gap: 24px !important;
    padding: 8px 0 !important;
  }

  .social-icons a {
    font-size: 17px !important;
    width: 24px !important;
    height: 24px !important;
  }
}

/* =======================================================
   Multi-Step Application Modal (Figma Spec Replica)
   ======================================================= */
.apply-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.apply-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.apply-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.apply-modal-card {
  position: relative;
  width: 100%;
  max-width: 680px;
  background-color: #282828;
  border-radius: 20px;
  padding: 40px 48px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2;
}

.apply-modal-overlay.active .apply-modal-card {
  transform: translateY(0) scale(1);
}

.apply-modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.apply-modal-close-btn:hover {
  color: #FFFFFF;
  transform: scale(1.1);
}

/* Stepper Bar */
.apply-stepper-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  width: 100%;
}

.stepper-node {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #E2E2EA;
  color: #282828;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.stepper-node.active .stepper-circle {
  background-color: #79DED7;
  color: #121212;
}

.stepper-bar-track {
  flex: 1;
  height: 6px;
  background-color: #E2E2EA;
  border-radius: 3px;
  margin: 0 10px;
  position: relative;
  overflow: hidden;
}

.stepper-bar-fill {
  height: 100%;
  width: 0%;
  background-color: #79DED7;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Panel Typography */
.apply-step-panel {
  display: none;
  flex-direction: column;
}

.apply-step-panel.active {
  display: flex;
  animation: fadeInStep 0.35s ease;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.apply-panel-title {
  font-family: 'Figtree', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 16px 0;
  text-transform: uppercase;
}

.apply-panel-title .mint-accent {
  color: #79DED7;
}

.apply-panel-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #D1D1D6;
  margin: 0 0 32px 0;
}

.apply-panel-desc-small {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  color: #A0A0A0;
  margin: 0 0 20px 0;
}

/* Role Action Buttons (Step 1) */
.apply-role-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.apply-role-btn {
  padding: 16px 20px;
  background-color: #79DED7;
  color: #0E2927;
  font-family: 'Figtree', sans-serif;
  font-size: 17px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  text-align: center;
}

.apply-role-btn:hover {
  filter: brightness(1.05);
}

.apply-role-btn:active {
  transform: scale(0.97);
}

/* Input Fields Grid (Step 2 & Step 3) */
.apply-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-bottom: 24px;
}

.apply-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.apply-field-group.full-width {
  grid-column: 1 / -1;
}

.apply-field-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #FFFFFF;
}

.apply-input,
.apply-select {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #1A1A1A;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.apply-input::placeholder {
  color: #8E8E93;
  font-style: italic;
}

.apply-input:focus,
.apply-select:focus {
  border-color: #79DED7;
}

.apply-select-wrapper {
  position: relative;
  width: 100%;
}

.apply-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 32px;
  cursor: pointer;
}

.select-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #555555;
  pointer-events: none;
  font-size: 12px;
}

.apply-custom-upload-box {
  position: relative;
  width: 100%;
}

.upload-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #555555;
  font-size: 14px;
  pointer-events: none;
}

/* Role Pill Bar (Step 3) */
.apply-pill-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.role-pill-btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  background-color: #4A4A4A;
  color: #D1D1D6;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.role-pill-btn.active {
  background-color: #79DED7;
  color: #0E2927;
}

/* Primary Action Submit Button */
.apply-primary-submit-btn {
  width: 100%;
  padding: 14px 20px;
  background-color: #79DED7;
  color: #0E2927;
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.apply-primary-submit-btn:hover {
  filter: brightness(1.05);
}

.apply-primary-submit-btn:active {
  transform: scale(0.98);
}

/* Mobile Responsiveness (< 640px) */
@media (max-width: 640px) {
  .apply-modal-card {
    padding: 30px 20px;
    border-radius: 16px;
  }
  .apply-role-actions {
    grid-template-columns: 1fr;
  }
  .apply-fields-grid {
    grid-template-columns: 1fr;
  }
  .apply-field-group.full-width {
    grid-column: 1;
  }
  .apply-panel-title {
    font-size: 26px;
  }
}