    /* ==========================================================================
   SUNSET CASTLE 2026 - STYLE SHEET (GDPR COMPLIANT, SELF-HOSTED FONTS)
   ========================================================================== */

    /* --------------------------------------------------------------------------
   FONT INITIATION (GDPR - Hosted Locally)
   -------------------------------------------------------------------------- */
    @font-face {
      font-family: 'Bodoni Moda';
      src: url('/assets/fonts/bodoni-moda-regular.woff2') format('woff2');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Bodoni Moda';
      src: url('/assets/fonts/bodoni-moda-italic.woff2') format('woff2');
      font-weight: 400;
      font-style: italic;
      font-display: swap;
    }

    @font-face {
      font-family: 'Bodoni Moda';
      src: url('/assets/fonts/bodoni-moda-700.woff2') format('woff2');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Bodoni Moda';
      src: url('/assets/fonts/bodoni-moda-900.woff2') format('woff2');
      font-weight: 900;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Outfit';
      src: url('/assets/fonts/outfit-regular.woff2') format('woff2');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Outfit';
      src: url('/assets/fonts/outfit-500.woff2') format('woff2');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Outfit';
      src: url('/assets/fonts/outfit-700.woff2') format('woff2');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    /* --------------------------------------------------------------------------
   DESIGN SYSTEM VARIABLES
   -------------------------------------------------------------------------- */
    :root {
      /* Poster Sunset Colors */
      --color-sunset-red: #f23c13;
      --color-sunset-orange: #ff7200;
      --color-sunset-yellow: #ffa200;
      --color-sunset-gold: #ffeb3b;
      --color-castle-magenta: #9e1b68;
      --color-castle-shadow: #5d0f3c;

      /* Text & Accents */
      --color-espresso: #ffffff;
      /* White primary text */
      --color-espresso-faded: rgba(255, 255, 255, 0.75);
      /* Faded white text */
      --color-espresso-dark: #1f0b03;
      /* Kept original dark espresso for backgrounds/hover contrast */
      --color-pure-white: #ffffff;
      --color-cream: #fbf6f0;
      --color-glass-bg: rgba(255, 255, 255, 0.09);
      --color-glass-border: rgba(255, 255, 255, 0.18);
      --color-glass-glow: rgba(255, 255, 255, 0.15);

      /* Fonts */
      --font-display: 'Bodoni Moda', Georgia, serif;
      --font-body: 'Outfit', sans-serif;

      /* Layout */
      --container-max-width: 1200px;
      --poster-width: 600px;
      --transition-speed: 0.3s;
      --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
      --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);

      /* Poster 2026 Specific Colors */
      --color-poster-bg: #eddcc9;
      --color-poster-dark: #2a041b;
      --color-poster-sun: #ff4c25;
    }

    /* --------------------------------------------------------------------------
   GLOBAL RESET & BASICS
   -------------------------------------------------------------------------- */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      font-size: 16px;
      scroll-behavior: smooth;
      background-color: var(--color-espresso-dark);
      /* Keep background dark */
      color: var(--color-espresso);
      /* Text is white */
      font-family: var(--font-body);
      -webkit-font-smoothing: antialiased;
    }

    body {
      overflow-x: hidden;
      min-height: 100vh;
      position: relative;
      background: transparent;
    }

    /* Fixed background gradient overlay to bypass mobile background-attachment glitch */
    body::after {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
      background: linear-gradient(135deg,
          var(--color-sunset-red) 0%,
          var(--color-sunset-orange) 50%,
          var(--color-sunset-yellow) 100%);
    }

    /* CSS Grain Overlay */
    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 999;
      filter: url(#noiseFilter);
      opacity: 0.45;
      /* Soft textured feel */
    }

    /* --------------------------------------------------------------------------
   DECORATIVE ELEMENTS & ANIMS
   -------------------------------------------------------------------------- */
    /* Sun Glow Background */
    .sun-glow {
      position: absolute;
      width: 450px;
      height: 450px;
      border-radius: 50%;
      background: radial-gradient(circle,
          var(--color-sunset-gold) 0%,
          var(--color-sunset-orange) 60%,
          rgba(255, 114, 0, 0) 100%);
      filter: blur(10px);
      mix-blend-mode: color-dodge;
      opacity: 0.75;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
      animation: pulse-glow 8s infinite alternate var(--ease-smooth);
    }

    @keyframes pulse-glow {
      0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.65;
      }

      100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.85;
      }
    }

    /* SVG Sparkles & Starbursts */
    .sparkle {
      position: absolute;
      pointer-events: none;
      animation: shimmer 4s infinite ease-in-out;
      fill: var(--color-pure-white);
      z-index: 3;
    }

    .sparkle-gold {
      fill: var(--color-sunset-gold);
      animation-delay: 2s;
    }

    .starburst {
      position: absolute;
      pointer-events: none;
      stroke: var(--color-pure-white);
      opacity: 0.15;
      z-index: 1;
      transform-origin: center;
      animation: slow-rotate 80s linear infinite;
    }

    @keyframes shimmer {

      0%,
      100% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0.5;
      }

      50% {
        transform: scale(1.2) rotate(45deg);
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
      }
    }

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

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

    /* Drifting Clouds Layer */
    .hero-clouds {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 2;
      /* Sits behind text/castle but in front of sun */
      overflow: hidden;
      opacity: 0.45;
    }

    .cloud {
      position: absolute;
      width: 200%;
      height: 250px;
      background-repeat: repeat-x;
      background-size: 50% 100%;
    }

    .cloud-1 {
      background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1000 200" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 150 C 150 130 250 160 400 140 C 550 120 650 150 800 130 C 950 110 1000 140 1000 140 L 1000 200 L 0 200 Z" fill="%239e1b68" opacity="0.3"/></svg>');
      bottom: 60px;
      left: 0;
      animation: drift-left 55s linear infinite;
    }

    .cloud-2 {
      background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1000 200" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 160 C 120 140 220 180 350 150 C 480 120 580 170 700 140 C 820 110 920 150 1000 150 L 1000 200 L 0 200 Z" fill="%23f23c13" opacity="0.25"/></svg>');
      bottom: 20px;
      left: 0;
      animation: drift-right 75s linear infinite;
    }

    @keyframes drift-left {
      0% {
        background-position-x: 0px;
      }

      100% {
        background-position-x: -1000px;
      }
    }

    @keyframes drift-right {
      0% {
        background-position-x: 0px;
      }

      100% {
        background-position-x: 1000px;
      }
    }



    /* --------------------------------------------------------------------------
   LAYOUT CONTAINERS
   -------------------------------------------------------------------------- */
    .scroll-container {
      position: relative;
      width: 100%;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 0 4rem 0;
    }

    /* Add padding to all direct children EXCEPT the hero */
    .scroll-container>*:not(.hero-fullscreen) {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    /* --------------------------------------------------------------------------
   FULLSCREEN HERO SECTION (100vh immersive)
   -------------------------------------------------------------------------- */
    .hero-fullscreen {
      position: relative;
      width: 100%;
      height: 100vh;
      height: 100dvh;
      /* Dynamic viewport height for mobile browsers */
      min-height: 600px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      z-index: 1;
      background-color: #000;
    }

    .hero-video-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
      background-color: #000;
    }

    @keyframes youtube-fade-in {

      0%,
      50% {
        opacity: 0;
      }

      100% {
        opacity: 1;
      }
    }

    .hero-video-iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 177.78vh;
      /* 16:9 ratio based on viewport height */
      height: 100vh;
      min-width: 100%;
      min-height: 56.25vw;
      /* 16:9 ratio based on viewport width */
      transform: translate(-50%, -50%) scale(1.2);
      /* Scale crops YouTube's top title bar & bottom controls via overflow:hidden */
      border: none;
      opacity: 0;
      animation: youtube-fade-in 1s ease-in forwards;
    }

    /* Atmospheric Haze Layers */
    .hero-haze {
      position: absolute;
      left: 0;
      width: 100%;
      pointer-events: none;
      z-index: 2;
    }

    .hero-haze--top {
      top: 0;
      height: 40%;
      background: linear-gradient(to bottom,
          rgba(31, 11, 3, 0.7) 0%,
          rgba(31, 11, 3, 0.4) 30%,
          transparent 100%);
    }

    .hero-haze--bottom {
      bottom: 0;
      height: 35%;
      background: linear-gradient(to top,
          rgba(93, 15, 60, 0.5) 0%,
          transparent 100%);
    }

    .hero-top-readability-fade {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 32%;
      pointer-events: none;
      z-index: 4;
      background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.72) 0%,
          rgba(0, 0, 0, 0.46) 42%,
          transparent 100%);
    }

    /* Third cloud layer for wider viewport */
    .cloud-3 {
      background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1000 200" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 170 C 100 150 200 190 300 160 C 400 130 500 180 600 150 C 700 120 800 160 900 140 L 1000 170 L 1000 200 L 0 200 Z" fill="%235d0f3c" opacity="0.2"/></svg>');
      bottom: 40px;
      left: 0;
      animation: drift-left 90s linear infinite;
      animation-direction: reverse;
    }

    /* ===== TOP BAR ===== */
    .hero-top-bar {
      position: relative;
      z-index: 5;
      display: flex;
      justify-content: center;
      gap: 2rem;
      padding: 2rem 2rem 0 2rem;
      flex-wrap: wrap;
    }

    .hero-top-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
    }

    .hero-top-label {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: rgba(255, 255, 255, 0.5);
    }

    .hero-top-value {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-pure-white);
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    /* Language Selector styles */
    .lang-selector {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .active-lang {
      color: var(--color-sunset-gold);
      font-weight: 700;
      text-shadow: 0 0 10px rgba(255, 235, 59, 0.4);
    }

    .lang-link {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      transition: color var(--transition-speed) ease, text-shadow var(--transition-speed) ease;
    }

    .lang-link:hover {
      color: var(--color-pure-white);
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    }

    .lang-separator {
      color: rgba(255, 255, 255, 0.25);
      user-select: none;
    }

    /* ===== CENTER TITLE BLOCK ===== */
    .hero-center-content {
      position: relative;
      z-index: 4;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 2rem;
    }

    .hero-title-wrapper {
      text-align: center;
    }

    .hero-title {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: clamp(4rem, 12vw, 10rem);
      line-height: 0.85;
      color: var(--color-pure-white);
      text-transform: uppercase;
      letter-spacing: -0.02em;
      text-shadow:
        0 4px 30px rgba(255, 114, 0, 0.25),
        0 0 80px rgba(242, 60, 19, 0.15);
      margin: 0;
    }

    .hero-title-line {
      display: block;
    }

    .hero-title-word {
      display: inline-block;
      transition: transform 0.4s var(--ease-smooth), opacity 0.4s ease;
    }

    /* Subtle offset between word pairs */
    .hero-title-line:first-child .hero-title-word:nth-child(2) {
      margin-left: 0.08em;
      opacity: 0.85;
    }

    .hero-title-line:last-child .hero-title-word:first-child {
      margin-right: 0.08em;
      opacity: 0.85;
    }

    .hero-edition {
      font-family: var(--font-body);
      font-size: clamp(0.85rem, 2vw, 1.2rem);
      font-weight: 500;
      letter-spacing: 0.5em;
      text-indent: 0.5em;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 1.2rem;
      text-transform: uppercase;
    }

    /* ===== BOTTOM ZONE (Lineup + Castle + Badge) ===== */
    .hero-bottom-zone {
      position: relative;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin-top: auto;
      flex-shrink: 0;
    }

    /* --- Lineup Ribbon --- */
    .hero-lineup-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      width: 100%;
      padding: 1rem 2rem;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      flex-wrap: wrap;
    }

    .hero-lineup-headliner,
    .hero-lineup-supports {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .hero-lineup-role {
      font-family: var(--font-body);
      font-size: 0.6rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: rgba(255, 255, 255, 0.45);
      white-space: nowrap;
    }

    .hero-lineup-name {
      font-family: var(--font-display);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--color-pure-white);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
    }

    .hero-lineup-name--main {
      font-size: 1.25rem;
      font-weight: 900;
      color: var(--color-sunset-gold);
      text-shadow: 0 0 20px rgba(255, 235, 59, 0.3);
    }

    .hero-lineup-sep {
      color: rgba(255, 255, 255, 0.25);
      font-size: 0.85rem;
      user-select: none;
    }

    .hero-lineup-divider {
      width: 1px;
      height: 28px;
      background: rgba(255, 255, 255, 0.2);
      flex-shrink: 0;
    }

    .hero-lineup-names {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    /* --- Castle Silhouette (visible above lineup) --- */
    .hero-castle-anchor {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: center;
      overflow: visible;
    }

    .hero-castle-svg {
      position: relative;
      width: 90%;
      max-width: 900px;
      height: auto;
      pointer-events: none;
      filter: drop-shadow(0 -5px 25px rgba(158, 27, 104, 0.4));
      opacity: 0.8;
      margin-bottom: -4px;
      /* Seamless join with lineup bar below */
    }

    .castle-path {
      fill: var(--color-castle-magenta);
      transition: fill var(--transition-speed) ease;
    }

    .castle-path--keep {
      fill: var(--color-castle-shadow);
    }

    .hero-fullscreen:hover .castle-path {
      fill: var(--color-castle-shadow);
    }

    .hero-fullscreen:hover .castle-path--keep {
      fill: #3a0825;
    }

    /* --- Afterparty Badge (floating) --- */
    .hero-afterparty-badge {
      position: absolute;
      bottom: 5rem;
      right: clamp(1rem, 5vw, 4rem);
      background-color: #d1ff3c;
      color: var(--color-espresso-dark);
      border-radius: 50%;
      width: 80px;
      height: 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: rotate(-15deg);
      font-family: var(--font-body);
      font-weight: 700;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      z-index: 6;
      transition: transform 0.4s var(--ease-elastic);
    }

    .hero-afterparty-badge span.after-title {
      font-size: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      opacity: 0.7;
    }

    .hero-afterparty-badge span.club-name {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 900;
      line-height: 0.9;
      letter-spacing: 0.05em;
      margin-top: 2px;
    }

    .hero-fullscreen:hover .hero-afterparty-badge {
      transform: rotate(5deg) scale(1.1);
    }



    /* ===== FULLSCREEN HERO RESPONSIVE ===== */
    @media (max-width: 768px) {
      .hero-top-bar {
        gap: 1.2rem;
        padding: 1.5rem 1rem 0 1rem;
      }

      .hero-top-value {
        font-size: 0.85rem;
        letter-spacing: 0.1em;
      }

      .hero-title {
        font-size: clamp(3rem, 16vw, 6rem);
      }

      .hero-edition {
        letter-spacing: 0.3em;
        text-indent: 0.3em;
        font-size: 0.8rem;
      }

      .hero-lineup-bar {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        flex-shrink: 0;
      }

      .hero-lineup-headliner,
      .hero-lineup-supports {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
      }

      .hero-lineup-divider {
        width: 40px;
        height: 1px;
      }

      .hero-fullscreen {
        height: 100vh;
        min-height: 100vh;
        height: 100svh;
        min-height: 100svh;
      }

      .hero-poster-layout {
        height: clamp(150px, 26vh, 230px);
        height: clamp(150px, 26svh, 230px);
        transform: translateY(-10vh);
        transform: translateY(-10svh);
      }

      .hero-center-content {
        min-height: 0;
        padding: 0 1rem;
      }

      .hero-bottom-zone {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin-top: 0;
      }

      .hero-poster-sun {
        width: clamp(140px, 34vw, 210px);
        height: clamp(140px, 34vw, 210px);
        border-width: 2.5px;
      }

      .hero-lineup-names {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.25rem 0.5rem;
      }

      .hero-afterparty-badge {
        width: 65px;
        height: 65px;
        bottom: 4.5rem;
        right: 1rem;
      }

      .hero-afterparty-badge span.after-title {
        font-size: 0.4rem;
      }

      .hero-afterparty-badge span.club-name {
        font-size: 0.85rem;
      }


      .hero-castle-svg {
        width: 100%;
        opacity: 0.6;
      }

      .tickets-section {
        padding: 2.5rem 1.5rem;
        margin-bottom: 2.5rem;
      }

      .tickets-section h2 {
        font-size: 1.65rem;
      }
    }

    @media (max-width: 480px) {
      .hero-top-bar {
        gap: 0.8rem;
      }

      .hero-top-label {
        font-size: 0.55rem;
      }

      .hero-top-value {
        font-size: 0.75rem;
      }

      .hero-lineup-name {
        font-size: 0.8rem;
      }

      .hero-lineup-name--main {
        font-size: 1.05rem;
      }

      .countdown-container {
        padding: 1.1rem 0.75rem;
        margin: 2.5rem auto;
      }

      .countdown-timer {
        align-items: flex-start;
        gap: 0.1rem;
      }

      .timer-segment {
        min-width: 31px;
      }

      .timer-num {
        font-size: 1.22rem;
      }

      .timer-unit {
        font-size: 0.55rem;
        letter-spacing: 0.04em;
      }

      .timer-colon {
        font-size: 0.9rem;
        margin-top: -0.2rem;
      }
    }

    /* --------------------------------------------------------------------------
   DETAILS & EVENT DESCRIPTION SECTION
   -------------------------------------------------------------------------- */
    .details-section {
      width: 100%;
      max-width: var(--container-max-width);
      margin-bottom: 4rem;
      text-align: center;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 900;
      color: var(--color-espresso);
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 1.8rem;
      }
    }

    .section-subtitle {
      font-family: var(--font-body);
      font-size: 1.15rem;
      color: var(--color-espresso-faded);
      max-width: 650px;
      margin: 0 auto 3rem auto;
      line-height: 1.6;
    }

    .info-cards-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .info-cards-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .info-card {
      background: var(--color-glass-bg);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid var(--color-glass-border);
      padding: 2.5rem 2rem;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(31, 11, 3, 0.1);
      transition: all var(--transition-speed) var(--ease-smooth);
    }

    .info-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.25);
      box-shadow: 0 15px 35px var(--color-glass-glow);
    }

    .info-card-icon {
      margin-bottom: 1.2rem;
      display: inline-flex;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      fill: var(--color-pure-white);
    }

    .info-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 900;
      margin-bottom: 0.75rem;
      color: var(--color-pure-white);
      text-transform: uppercase;
    }

    .info-card p {
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--color-espresso-faded);
      line-height: 1.5;
    }

    /* --------------------------------------------------------------------------
   DJS SECTION (LINE-UP AND DESCRIPTIONS)
   -------------------------------------------------------------------------- */
    .lineup-section {
      width: 100%;
      max-width: var(--container-max-width);
      margin-bottom: 4rem;
      text-align: center;
    }

    /* Headline DJ Card (Large) */
    .headline-dj-showcase {
      background: linear-gradient(135deg, rgba(158, 27, 104, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--color-glass-border);
      border-radius: 24px;
      padding: 3rem 2rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: center;
      text-align: left;
      max-width: 900px;
      margin: 0 auto 3rem auto;
      box-shadow: 0 20px 45px rgba(31, 11, 3, 0.15);
      position: relative;
      overflow: hidden;
    }

    .headline-dj-showcase::after {
      content: "";
      position: absolute;
      top: -50%;
      right: -20%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 235, 59, 0.2) 0%, rgba(255, 114, 0, 0) 70%);
      pointer-events: none;
      filter: blur(20px);
    }

    @media (min-width: 768px) {
      .headline-dj-showcase {
        grid-template-columns: 1fr 1.2fr;
        padding: 3.5rem;
      }
    }

    .dj-photo-container {
      aspect-ratio: 1;
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--color-castle-magenta) 0%, var(--color-espresso) 100%);
      position: relative;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    /* Styled abstract pattern simulating photo */
    .dj-photo-placeholder {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-pure-white);
      padding: 1.5rem;
      text-align: center;
    }

    .dj-photo-placeholder svg {
      position: absolute;
      opacity: 0.15;
      width: 80%;
      height: 80%;
      fill: var(--color-pure-white);
      animation: slow-rotate 40s linear infinite;
    }

    .dj-photo-placeholder span {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      z-index: 2;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    .headline-dj-info {
      display: flex;
      flex-direction: column;
    }

    .headline-dj-tag {
      align-self: flex-start;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 700;
      background: var(--color-castle-magenta);
      color: var(--color-pure-white);
      padding: 0.35rem 0.9rem;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 1rem;
    }

    .headline-dj-name {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 900;
      color: var(--color-espresso);
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .headline-dj-sub {
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-castle-magenta);
      margin-bottom: 1.5rem;
      letter-spacing: 0.05em;
    }

    .headline-dj-bio {
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.6;
      color: var(--color-espresso-faded);
      margin-bottom: 1.5rem;
    }

    /* Support DJ Grid */
    .dj-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    @media (min-width: 576px) {
      .dj-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 992px) {
      .dj-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .dj-card {
      background: var(--color-glass-bg);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid var(--color-glass-border);
      border-radius: 20px;
      padding: 1.5rem;
      text-align: left;
      display: flex;
      flex-direction: column;
      box-shadow: 0 8px 24px rgba(31, 11, 3, 0.08);
      transition: all var(--transition-speed) var(--ease-smooth);
    }

    .dj-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.25);
      box-shadow: 0 15px 30px rgba(158, 27, 104, 0.15);
    }

    .dj-card-photo {
      aspect-ratio: 1.2;
      width: 100%;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(31, 11, 3, 0.4) 0%, rgba(31, 11, 3, 0.9) 100%);
      margin-bottom: 1.2rem;
      overflow: hidden;
      position: relative;
    }

    .dj-card-name {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 900;
      color: var(--color-espresso);
      text-transform: uppercase;
      margin-bottom: 0.25rem;
      line-height: 1.1;
    }

    .dj-card-role {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--color-castle-magenta);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.75rem;
    }

    .dj-card-desc {
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: var(--color-espresso-faded);
      line-height: 1.5;
      margin-bottom: 1rem;
    }

    /* Expand Line-up / Sub-page Button styling */
    .action-button-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--color-espresso);
      background: transparent;
      border: 2px solid var(--color-espresso);
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      transition: all var(--transition-speed) var(--ease-smooth);
    }

    .action-button-outline:hover {
      background: var(--color-pure-white);
      color: var(--color-espresso-dark);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      transform: translateY(-2px);
    }

    .action-button-outline svg {
      fill: currentColor;
      transition: transform var(--transition-speed) ease;
    }

    .action-button-outline:hover svg {
      transform: translateX(4px);
    }

    /* --------------------------------------------------------------------------
   TICKET BUYING CTA SECTION
   -------------------------------------------------------------------------- */
    .tickets-section {
      width: 100%;
      max-width: 680px;
      background: var(--color-espresso-dark);
      color: var(--color-cream);
      border-radius: 32px;
      padding: 3.5rem;
      margin-bottom: 4rem;
      text-align: center;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
    }

    .tickets-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 10% 20%, rgba(242, 60, 19, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 162, 0, 0.15) 0%, transparent 50%);
      pointer-events: none;
    }

    .tickets-section h2 {
      font-family: var(--font-display);
      font-size: 2.35rem;
      font-weight: 900;
      color: var(--color-pure-white);
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .tickets-section p.subtitle {
      font-family: var(--font-body);
      font-size: 1.1rem;
      color: rgba(251, 246, 240, 0.7);
      max-width: 550px;
      margin: 0 auto 3rem auto;
      line-height: 1.5;
    }

    /* Tickets options tier grid */
    .tickets-tier-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.2rem;
      margin-bottom: 3.5rem;
    }

    @media (min-width: 768px) {
      .tickets-tier-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .ticket-tier {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 3.25rem 1.5rem 2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      transition: all var(--transition-speed) var(--ease-smooth);
    }

    .ticket-tier.sold-out {
      opacity: 0.55;
    }

    .ticket-tier.active {
      background: rgba(255, 255, 255, 0.07);
      border-color: var(--color-sunset-orange);
      box-shadow: 0 10px 30px rgba(255, 114, 0, 0.15);
    }

    .ticket-status-badge {
      position: absolute;
      top: 1rem;
      right: 1.2rem;
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 0.25rem 0.65rem;
      border-radius: 50px;
    }

    .sold-out .ticket-status-badge {
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
    }

    .active .ticket-status-badge {
      background: var(--color-sunset-orange);
      color: var(--color-pure-white);
      animation: pulse-badge 2s infinite;
    }

    @keyframes pulse-badge {

      0%,
      100% {
        opacity: 0.8;
      }

      50% {
        opacity: 1;
        transform: scale(1.05);
      }
    }

    .ticket-tier h4 {
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--color-pure-white);
      letter-spacing: 0.1em;
      margin-bottom: 0.75rem;
      text-align: left;
    }

    .ticket-price-container {
      display: flex;
      align-items: baseline;
      margin-bottom: 1rem;
    }

    .ticket-price {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--color-pure-white);
      line-height: 1;
    }

    .ticket-price-suffix {
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: rgba(251, 246, 240, 0.5);
      margin-left: 0.25rem;
    }

    .ticket-features {
      list-style: none;
      text-align: left;
      font-size: 0.85rem;
      color: rgba(251, 246, 240, 0.6);
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-top: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 1rem;
    }

    .ticket-features li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .ticket-features li::before {
      content: "✓";
      color: var(--color-sunset-orange);
      font-weight: bold;
    }

    .sold-out .ticket-features li::before {
      content: "✕";
      color: rgba(255, 255, 255, 0.3);
    }

    /* Primary Purchase CTA Button */
    .cta-button-solid {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      width: 100%;
      max-width: 420px;
      background: linear-gradient(135deg, var(--color-sunset-red) 0%, var(--color-sunset-orange) 100%);
      color: var(--color-pure-white);
      font-family: var(--font-body);
      font-size: 1.15rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 1.2rem 2rem;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 10px 30px rgba(242, 60, 19, 0.35);
      transition: all var(--transition-speed) var(--ease-smooth);
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .cta-button-solid::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--color-sunset-orange) 0%, var(--color-sunset-yellow) 100%);
      z-index: -1;
      opacity: 0;
      transition: opacity var(--transition-speed) ease;
    }

    .cta-button-solid:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 15px 35px rgba(242, 60, 19, 0.5);
    }

    .cta-button-solid:hover::before {
      opacity: 1;
    }

    .cta-button-solid:active {
      transform: translateY(-1px) scale(1);
    }

    .cta-button-solid svg {
      fill: currentColor;
    }

    .cta-fee-notice {
      font-family: var(--font-body);
      font-size: 0.8rem;
      color: rgba(251, 246, 240, 0.4);
      margin-top: 1rem;
    }

    /* --------------------------------------------------------------------------
   GDPR COMPLIANT FOOTER
   -------------------------------------------------------------------------- */
    footer {
      width: 100%;
      max-width: var(--container-max-width);
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      padding: 3rem 1rem 0 1rem;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      gap: 1.5rem;
      align-items: center;
      justify-content: space-between;
      text-align: center;
    }

    @media (min-width: 768px) {
      footer {
        flex-direction: row;
        text-align: left;
      }
    }

    .footer-copy {
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--color-espresso-faded);
    }

    .footer-credit {
      order: 3;
      width: 100%;
      margin-top: -0.5rem;
      text-align: center;
      font-size: 0.8rem;
    }

    .footer-copy a {
      color: inherit;
      text-decoration: underline;
      transition: color var(--transition-speed) ease;
    }

    .footer-copy a:hover {
      color: var(--color-sunset-gold);
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      order: 2;
    }

    @media (max-width: 767px) {
      .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1rem;
        max-width: 100%;
      }

      .footer-link-sep {
        display: none;
      }
    }

    .footer-link {
      font-family: var(--font-body);
      font-weight: 500;
      text-decoration: none;
      font-size: 0.9rem;
      color: var(--color-espresso);
      transition: color var(--transition-speed) ease;
    }

    .footer-link:hover {
      color: var(--color-sunset-gold);
    }

    /* Simple GDPR Cookie / Privacy Modal-Less Dialog */
    .gdpr-pill {
      background: var(--color-espresso-dark);
      color: var(--color-cream);
      padding: 0.6rem 1.2rem;
      border-radius: 50px;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .gdpr-pill::before {
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      background-color: #2ec4b6;
      /* Mint green safe dot */
      border-radius: 50%;
    }

    /* --------------------------------------------------------------------------
   COUNTDOWN TIMER CONTAINER
   -------------------------------------------------------------------------- */
    .countdown-container {
      width: 100%;
      max-width: 600px;
      background: var(--color-poster-bg);
      border: 3px solid var(--color-poster-dark);
      border-radius: 20px;
      padding: 1.8rem 2rem;
      text-align: center;
      box-shadow: 0 15px 35px rgba(42, 4, 27, 0.2);
      margin: 4rem auto 4rem auto;
      /* Top spacing from hero, centered, spacing below */
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .countdown-label {
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--color-poster-dark);
      opacity: 0.9;
      margin-bottom: 1rem;
    }

    .countdown-timer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      width: 100%;
    }

    .timer-segment {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 70px;
    }

    .timer-num {
      font-family: var(--font-display);
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--color-poster-dark);
      line-height: 1;
    }

    .timer-unit {
      font-family: var(--font-body);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-poster-dark);
      opacity: 0.9;
      margin-top: 0.4rem;
    }

    .timer-colon {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--color-poster-dark);
      line-height: 1;
      margin-top: -0.65rem;
      animation: flash 1s infinite;
    }

    @keyframes flash {

      0%,
      100% {
        opacity: 0.3;
      }

      50% {
        opacity: 1;
      }
    }

    /* Screen reader only utility class for SEO and Accessibility */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }

    /* --------------------------------------------------------------------------
   FORTRESS VENUE MAP SECTION
   -------------------------------------------------------------------------- */
    .location-section {
      width: 100%;
      max-width: var(--container-max-width);
      margin-bottom: 4rem;
      text-align: center;
    }

    .map-wrapper {
      width: 100%;
      background: var(--color-glass-bg);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid var(--color-glass-border);
      border-radius: 24px;
      padding: 1rem;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
      transition: all var(--transition-speed) var(--ease-smooth);
    }

    .map-wrapper:hover {
      border-color: rgba(255, 255, 255, 0.25);
      box-shadow: 0 20px 45px rgba(255, 114, 0, 0.15);
    }

    .map-iframe {
      width: 100%;
      height: 300px;
      border: none;
      border-radius: 16px;
      opacity: 0.9;
      filter: saturate(0.7) contrast(1.1) brightness(0.95);
      transition: all var(--transition-speed) ease;
    }

    .map-iframe:hover {
      opacity: 1;
      filter: saturate(1) contrast(1);
    }

    @media (min-width: 768px) {
      .map-iframe {
        height: 450px;
      }
    }

    /* --------------------------------------------------------------------------
   VIBE VIDEO SECTION
   -------------------------------------------------------------------------- */
    .video-section {
      width: 100%;
      max-width: var(--container-max-width);
      margin-bottom: 4rem;
      text-align: center;
    }

    .video-wrapper {
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      background: var(--color-glass-bg);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid var(--color-glass-border);
      border-radius: 24px;
      padding: 1rem;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
      transition: all var(--transition-speed) var(--ease-smooth);
    }

    .video-wrapper:hover {
      border-color: rgba(255, 255, 255, 0.25);
      box-shadow: 0 20px 45px rgba(255, 114, 0, 0.15);
    }

    .video-thumbnail-link {
      display: block;
      text-decoration: none;
      overflow: hidden;
      border-radius: 16px;
    }

    .video-thumbnail-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #000;
      border-radius: 16px;
    }

    .video-thumbnail-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s var(--ease-smooth);
    }

    .video-play-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(31, 11, 3, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.4s ease;
      z-index: 2;
    }

    .video-play-btn {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-pure-white);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.1);
      transition: all 0.4s var(--ease-elastic);
    }

    .video-play-btn svg {
      width: 32px;
      height: 32px;
      margin-left: 6px;
      /* visually center play triangle */
      fill: var(--color-pure-white);
      transition: transform 0.4s var(--ease-elastic);
    }

    /* Hover effects */
    .video-thumbnail-link:hover .video-thumbnail-img {
      transform: scale(1.04);
    }

    .video-thumbnail-link:hover .video-play-overlay {
      background: rgba(31, 11, 3, 0.25);
    }

    .video-thumbnail-link:hover .video-play-btn {
      background: rgba(242, 60, 19, 0.3);
      /* sunset red translucent */
      border-color: var(--color-sunset-yellow);
      box-shadow: 0 0 35px rgba(255, 114, 0, 0.55), 0 10px 30px rgba(0, 0, 0, 0.4);
      transform: scale(1.15);
    }

    .video-thumbnail-link:hover .video-play-btn svg {
      transform: scale(1.1);
    }

    .autoplay-video-container {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 16px;
      overflow: hidden;
      background: #000;
    }

    .autoplay-video-container iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      transform: translate(-50%, -50%) scale(1.2);
      /* Scale crops YouTube's top title bar & bottom controls via overflow:hidden */
      border: none;
      display: block;
      opacity: 0;
      animation: youtube-fade-in 1s ease-in forwards;
    }

    .video-interaction-shield {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: transparent;
      z-index: 3;
    }

    /* ==========================================================================
   POSTER 2026 DESIGN STYLES
   ========================================================================== */

    /* Wave graphics layout */
    .hero-waves-top {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 250px;
      overflow: hidden;
      z-index: 3;
      pointer-events: none;
      opacity: 0.95;
    }

    .hero-waves-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 250px;
      overflow: hidden;
      z-index: 3;
      pointer-events: none;
      opacity: 0.95;
    }

    .waves-svg {
      width: 100%;
      height: 100%;
    }

    /* Poster content layout in Hero */
    .hero-poster-layout {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 900px;
      height: clamp(300px, 60vh, 500px);
      margin: 0 auto;
      z-index: 4;
    }

    .hero-poster-sun {
      position: absolute;
      width: clamp(240px, 45vw, 420px);
      height: clamp(240px, 45vw, 420px);
      border-radius: 50%;
      /* Translucent orange glass gradient (more transparent version) */
      background: radial-gradient(circle, rgba(255, 124, 59, 0.22) 0%, rgba(230, 35, 16, 0.12) 100%);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 3.5px solid rgba(255, 124, 59, 0.7);
      box-shadow: 0 0 85px rgba(255, 124, 59, 0.65), inset 0 0 30px rgba(255, 124, 59, 0.4);
      z-index: 1;
      animation: clear-sphere-blur 7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    @keyframes clear-sphere-blur {

      0%,
      75% {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
      }

      100% {
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
      }
    }


    .hero-poster-title {
      position: absolute;
      left: 2%;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      font-family: var(--font-display);
      font-weight: 900;
      font-size: clamp(3rem, 7.5vw, 6.2rem);
      line-height: 0.85;
      color: var(--color-pure-white);
      text-transform: uppercase;
      letter-spacing: -0.02em;
    }

    .hero-poster-title span {
      display: block;
    }

    .hero-poster-date {
      position: absolute;
      right: 2%;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      font-family: var(--font-display);
      font-weight: 900;
      font-size: clamp(3rem, 7.5vw, 6.2rem);
      line-height: 0.85;
      color: var(--color-pure-white);
    }

    .hero-poster-date span {
      display: block;
    }

    /* Make sure the text scales down properly for very small screens */
    @media (max-width: 480px) {

      .hero-poster-title,
      .hero-poster-date {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
      }
    }

    /* Video link container effects */
    .video-link-overlay {
      text-decoration: none;
      display: block;
      cursor: pointer;
      width: 100%;
    }

    .video-link-overlay .autoplay-video-container {
      transition: transform var(--transition-speed) var(--ease-smooth), box-shadow var(--transition-speed) var(--ease-smooth);
    }

    .video-link-overlay:hover .autoplay-video-container {
      transform: scale(1.02);
      box-shadow: 0 15px 35px rgba(255, 114, 0, 0.25);
    }
  

/* ======== (next block) ======== */

    /* Event photo gallery */
    .gallery-section {
      width: 100%;
      max-width: var(--container-max-width);
      margin: 4rem 0;
      text-align: center;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1rem;
    }

    .gallery-item {
      display: block;
      aspect-ratio: 1;
      border-radius: 16px;
      overflow: hidden;
      background: var(--color-glass-bg);
      border: 1px solid var(--color-glass-border);
      box-shadow: 0 8px 24px rgba(31, 11, 3, 0.15);
      transition: all var(--transition-speed) var(--ease-smooth);
    }

    .gallery-item:hover {
      border-color: rgba(255, 255, 255, 0.3);
      box-shadow: 0 15px 30px rgba(255, 114, 0, 0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s var(--ease-smooth);
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    @media (max-width: 576px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
      }
    }

    .gallery-note {
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-style: italic;
      color: var(--color-espresso-faded);
      margin-top: 1.5rem;
    }

    /* Gallery lightbox slider */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 1001;
      background: rgba(15, 3, 10, 0.94);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox[hidden] {
      display: none;
    }

    .lb-img {
      max-width: 92vw;
      max-height: 86vh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    }

    .lb-btn {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      padding: 0;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .lb-btn:hover {
      background: rgba(255, 255, 255, 0.22);
      transform: scale(1.06);
    }

    .lb-prev,
    .lb-next {
      top: 50%;
      margin-top: -26px;
    }

    .lb-prev {
      left: clamp(0.5rem, 3vw, 2.5rem);
    }

    .lb-next {
      right: clamp(0.5rem, 3vw, 2.5rem);
    }

    .lb-close {
      top: 1rem;
      right: 1rem;
      font-size: 1.5rem;
    }

    .lb-counter {
      position: absolute;
      bottom: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-body);
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.75);
    }

    @media (max-width: 576px) {
      .lb-btn {
        width: 42px;
        height: 42px;
        font-size: 1.6rem;
      }

      .lb-prev {
        left: 0.4rem;
      }

      .lb-next {
        right: 0.4rem;
      }
    }
  
