﻿@font-face {
      font-family: 'Bridgers Brush';
      src: url('1FTV-VIP-Bridgers-Brush.otf') format('opentype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

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

    :root {
      --gold: #C8962A;
      --gold-light: #E8B84B;
      --gold-pale: #F5DFA0;
      --gold-glow: #F0C050;
      --dark: #0D0A04;
      --dark-2: #1A1408;
      --dark-3: #251C0C;
      --dark-4: #2E2310;
      --ink: #120E06;
      --cream: #FDF6E3;
      --cream-dim: #F5EDCC;
      --text-muted: #A08B60;
      --text-body: #D4C49A;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Be Vietnam Pro', sans-serif;
      background: var(--dark);
      color: var(--text-body);
      overflow-x: hidden;
    }

    /* ─── NOISE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      opacity: .35;
    }

    /* ─── GLOW BLOBS ─── */
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
      z-index: 0;
    }

    .blob-1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(200, 150, 42, .18) 0%, transparent 70%);
      top: -100px;
      left: -100px;
      animation: blobFloat1 8s infinite ease-in-out;
    }

    .blob-2 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(200, 150, 42, .12) 0%, transparent 70%);
      bottom: 0;
      right: -80px;
      animation: blobFloat2 10s infinite ease-in-out;
    }

    /* ─── SECTION BASE ─── */
    section {
      position: relative;
      z-index: 1;
    }

    /* ─── DIVIDER ─── */
    .divider {
      position: relative;
      width: 140px;
      height: 3px;
      background: linear-gradient(90deg, transparent, rgba(200, 150, 42, 0.5) 20%, rgba(200, 150, 42, 0.5) 80%, transparent 100%);
      margin: 0 auto 1.5rem;
      overflow: hidden;
    }

    .divider.left {
      margin: 0 0 1.5rem;
    }

    /* Diagonal accent slashes on the left edge */
    .divider::before {
      content: '';
      position: absolute;
      left: 10px;
      top: 0;
      width: 20px;
      height: 100%;
      background: repeating-linear-gradient(-45deg, var(--gold) 0, var(--gold) 2px, transparent 2px, transparent 6px);
      z-index: 2;
    }

    /* Glowing energy light pulse running left-to-right in a loop */
    .divider::after {
      content: '';
      position: absolute;
      top: 0;
      left: -40px;
      width: 40px;
      height: 100%;
      background: linear-gradient(90deg, transparent, var(--gold-light), #ffffff, var(--gold-light), transparent);
      animation: divider-glow-pulse 4s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: 1;
    }

    @keyframes divider-glow-pulse {
      0% {
        left: -40px;
      }

      30%,
      100% {
        left: 100%;
      }
    }

    /* ─── ORNAMENT ─── */
    .ornament {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--gold);
      font-size: 11px;
      letter-spacing: .2em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .ornament::before,
    .ornament::after {
      content: '';
      flex: 1;
      max-width: 40px;
      height: 1px;
      background: var(--gold);
      opacity: .5;
    }

    /* ═══════════════════════════════
     HERO
  ═══════════════════════════════ */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 6rem 1.5rem 4rem;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200, 150, 42, .15) 0%, transparent 70%),
        var(--dark);
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: -1;
      background-image: url('KV.png');
      background-size: cover;
      background-position: center;
      opacity: 0.6;
      mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
      -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
      pointer-events: none;
    }

    .hero-kicker {
      font-size: 11px;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(200, 150, 42, .35);
      padding: .4rem 1.2rem;
      border-radius: 2px;
      display: inline-block;
      margin-bottom: 2rem;
      opacity: 0;
      animation: kickerReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
    }

    /* Calligraphic Title Grid & Layout */
    .hero-title-grid {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: clamp(0.5rem, 1.8vw, 1.5rem);
      /* Balanced central gap to pull columns together while keeping text readable */
      max-width: 1000px;
      margin: 1.5rem auto 0;
      position: relative;
      z-index: 1;
    }

    .grid-left {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      /* Align elements to the right edge (center gutter) to bring Lãnh closer to Đạo */
      text-align: right;
    }

    .grid-right {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      /* Align elements to the left edge (center gutter) */
      text-align: left;
      margin-top: -1.2rem;
      /* Gentle shift up for "ĐẠO" to align with "MINH TRIẾT" level without clashing */
    }

    .grid-minh-triet {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4.2vw, 3.5rem);
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      /* Elegant wider spacing */
      font-weight: 500;
      /* Thinner, clean weight to match Image 2 */
      line-height: 1;
      margin-bottom: 0.5rem;
      /* Clean gap to prevent the calligraphy tilde from overlapping */
      margin-right: 0.5rem;
      /* Margin right since container is right-aligned */
      opacity: 0;
      animation: titleRevealSerif 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    }

    .grid-lanh {
      font-family: 'Bridgers Brush', cursive;
      font-size: clamp(8rem, 16vw, 13.5rem);
      color: var(--gold-light);
      line-height: 0.95;
      /* Increased line-height for clean, non-overlapping diacritics */
      margin-top: 0.2rem;
      margin-right: clamp(1.2rem, 2.5vw, 2.5rem);
      /* Added horizontal spacing to prevent overlap */
      text-shadow: 0 4px 20px rgba(200, 150, 42, 0.15);
      font-weight: normal;
      opacity: 0;
      animation: titleRevealBrushLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both, floatSlowLanh 6s infinite 1.7s ease-in-out;
    }

    .grid-dao {
      font-family: 'Bridgers Brush', cursive;
      font-size: clamp(8rem, 16vw, 13.5rem);
      color: var(--gold-light);
      line-height: 0.95;
      /* Increased line-height for clean, non-overlapping diacritics */
      margin-left: clamp(1.2rem, 2.5vw, 2.5rem);
      /* Added horizontal spacing to prevent overlap */
      margin-bottom: 0.5rem;
      /* Spacious bottom gap to prevent overlapping with "PHƯƠNG ĐÔNG" below */
      text-shadow: 0 4px 20px rgba(200, 150, 42, 0.15);
      font-weight: normal;
      opacity: 0;
      animation: titleRevealBrushRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both, floatSlowDao 6s infinite 1.7s ease-in-out;
    }

    .grid-phuong-dong {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4.2vw, 3.5rem);
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      /* Elegant wider spacing */
      font-weight: 500;
      /* Thinner, clean weight to match Image 2 */
      line-height: 1.2;
      /* Beautiful text line height for stacked words */
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-left: 0.5rem;
    }

    .grid-phuong-dong span {
      display: block;
      opacity: 0;
    }

    .grid-phuong-dong span:nth-child(1) {
      animation: titleRevealSerif 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
    }

    .grid-phuong-dong span:nth-child(2) {
      animation: titleRevealSerif 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
    }



    /* Mobile Responsive Title styling */
    @media (max-width: 600px) {
      .hero-title-grid {
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
      }

      .grid-left,
      .grid-right {
        align-items: center;
        text-align: center;
        margin: 0;
      }

      .grid-right {
        margin-top: -1.5rem;
      }

      .grid-minh-triet {
        margin-left: 0;
        font-size: 2rem;
      }

      .grid-lanh {
        margin-right: 0;
        font-size: 6.5rem;
      }

      .grid-dao {
        margin-left: 0;
        font-size: 6.5rem;
      }

      .grid-phuong-dong {
        margin-left: 0;
        align-items: center;
        font-size: 2rem;
      }
    }

    .hero-subtitle {
      font-size: clamp(.95rem, 2vw, 1.1rem);
      color: var(--text-muted);
      max-width: 850px;
      line-height: 1.8;
      margin: 1.5rem auto 0;
      font-weight: 300;
      overflow: hidden;
    }

    .hero-subtitle span {
      display: block;
      opacity: 0;
      transform: translateY(100%);
      animation: subtitleLineReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hero-subtitle span:nth-child(1) {
      animation-delay: 0.9s;
    }

    .hero-subtitle span:nth-child(2) {
      animation-delay: 1.05s;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin: 2.5rem 0;
    }

    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .85rem;
      color: var(--text-body);
      opacity: 0;
      transform: translateY(15px);
      animation: metaItemReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hero-meta-item:nth-child(1) { animation-delay: 1.3s; }
    .hero-meta-item:nth-child(2) { animation-delay: 1.45s; }
    .hero-meta-item:nth-child(3) { animation-delay: 1.6s; }

    .hero-meta-item svg {
      color: var(--gold);
      flex-shrink: 0;
    }

    .hero-cta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      opacity: 0;
      transform: translateY(20px);
      animation: ctaReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: var(--ink);
      font-family: 'Be Vietnam Pro', sans-serif;
      font-weight: 700;
      font-size: .9rem;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: .9rem 2.5rem;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      position: relative;
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      box-shadow: 0 4px 20px rgba(200, 150, 42, .3);
    }

    /* Button Shimmer */
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -150%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: skewX(-25deg);
      animation: buttonShimmer 3.5s infinite ease-in-out;
    }

    .btn-primary:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 10px 30px rgba(200, 150, 42, 0.5);
      background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, var(--gold) 100%);
    }

    .btn-outline {
      background: transparent;
      color: var(--gold-light);
      font-family: 'Be Vietnam Pro', sans-serif;
      font-weight: 600;
      font-size: .9rem;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: .9rem 2.5rem;
      border: 1px solid rgba(200, 150, 42, .5);
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .btn-outline:hover {
      transform: translateY(-4px) scale(1.02);
      background: rgba(200, 150, 42, .12);
      border-color: var(--gold-light);
      box-shadow: 0 8px 25px rgba(200, 150, 42, 0.15);
    }

    .hero-scroll {
      margin-top: 4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .5rem;
      font-size: .75rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--text-muted);
      opacity: 0;
      transform: translateY(10px);
      animation: scrollReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 2.2s forwards, scrollBob 2s infinite 3.2s ease-in-out;
    }

    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    /* ═══════════════════════════════
     ABOUT
  ═══════════════════════════════ */
    #about {
      padding: 7rem 1.5rem;
      background: var(--dark-2);
    }

    #about .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }

    .about-inner {
      max-width: 950px;
      margin: 0 auto;
    }

    .about-inner::after {
      content: "";
      display: table;
      clear: both;
    }

    .about-label {
      font-size: 11px;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .75rem;
    }

    .about-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    .about-body {
      font-size: .95rem;
      line-height: 1.9;
      color: var(--text-body);
      font-weight: 300;
      text-align: justify;
    }

    .about-body+.about-body {
      margin-top: 1rem;
    }

    .about-stats {
      float: right;
      width: 45%;
      margin-left: 4rem;
      margin-bottom: 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .stat-card {
      border: 1px solid rgba(200, 150, 42, .15);
      background: linear-gradient(135deg, rgba(200, 150, 42, 0.05) 0%, rgba(200, 150, 42, 0.01) 100%);
      padding: 1.75rem 1.5rem;
      border-radius: 8px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    }

    .stat-card:hover {
      transform: translateY(-5px);
      border-color: rgba(200, 150, 42, 0.45);
      box-shadow: 0 10px 30px rgba(200, 150, 42, 0.12), 0 4px 30px rgba(0, 0, 0, 0.25);
      background: linear-gradient(135deg, rgba(200, 150, 42, 0.08) 0%, rgba(200, 150, 42, 0.02) 100%);
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(200, 150, 42, 0.3), transparent);
      transition: all 0.4s ease;
    }

    .stat-card:hover::before {
      background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--gold-light);
      line-height: 1;
      margin-bottom: .25rem;
      transition: all 0.3s ease;
    }

    .stat-card:hover .stat-num {
      transform: scale(1.05);
      color: #fff;
    }

    .stat-label {
      font-size: .8rem;
      color: var(--text-muted);
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .btn-readmore {
      background: transparent;
      border: 1px solid rgba(200, 150, 42, 0.5);
      border-radius: 6px;
      color: var(--gold-light);
      font-size: 0.9rem;
      padding: 0.65rem 1.8rem;
      margin-top: 1.5rem;
      cursor: pointer;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-weight: 600;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      letter-spacing: 0.05em;
    }

    .btn-readmore:hover {
      background: rgba(200, 150, 42, 0.12);
      border-color: var(--gold-light);
      color: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(200, 150, 42, 0.15);
    }

    /* Staggered Scroll Reveal for About Section Children */
    #about .reveal .about-label,
    #about .reveal .about-heading,
    #about .reveal .about-content-wrapper,
    #about .reveal .stat-card {
      opacity: 0;
      transform: translateY(25px);
      transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    #about .reveal.visible .about-label { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
    #about .reveal.visible .stat-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
    #about .reveal.visible .stat-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
    #about .reveal.visible .about-heading { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
    #about .reveal.visible .stat-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
    #about .reveal.visible .about-content-wrapper { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
    #about .reveal.visible .stat-card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }

    /* ═══════════════════════════════
     SPEAKERS
  ═══════════════════════════════ */
    #speakers {
      padding: 7rem 1.5rem;
      background: var(--dark);
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-label {
      font-size: 11px;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .75rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--cream);
      line-height: 1.2;
    }

    .speakers-grid {
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .speaker-card {
      border: 1px solid rgba(200, 150, 42, .2);
      background: linear-gradient(160deg, rgba(200, 150, 42, .06) 0%, rgba(0, 0, 0, 0) 60%);
      border-radius: 2px;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s;
      position: relative;
    }

    .speaker-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    }

    .speaker-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(200, 150, 42, .15);
    }

    .speaker-img-wrap {
      width: 100%;
      aspect-ratio: 3/4;
      overflow: hidden;
      background: var(--dark-3);
      position: relative;
    }

    .speaker-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      filter: sepia(.15) contrast(1.05);
      transition: transform .5s;
    }

    .speaker-card:hover .speaker-img-wrap img {
      transform: scale(1.04);
    }

    .speaker-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: .75rem;
      background: linear-gradient(160deg, var(--dark-3), var(--dark-4));
    }

    .speaker-initials {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(200, 150, 42, .15);
      border: 1px solid rgba(200, 150, 42, .3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--gold-light);
      font-weight: 700;
    }

    .speaker-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(13, 10, 4, .9) 0%, transparent 100%);
      padding: 2rem 1.25rem 1.25rem;
    }

    .speaker-info {
      padding: 1.25rem;
    }

    .speaker-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: .4rem;
    }

    .speaker-role {
      font-size: .8rem;
      color: var(--gold);
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-bottom: .75rem;
      line-height: 1.5;
    }

    .speaker-bio {
      font-size: .85rem;
      color: var(--text-muted);
      line-height: 1.7;
      font-weight: 300;
    }

    .speaker-tag {
      display: inline-block;
      margin-top: .75rem;
      background: rgba(200, 150, 42, .12);
      border: 1px solid rgba(200, 150, 42, .3);
      color: var(--gold-pale);
      font-size: .75rem;
      padding: .25rem .75rem;
      border-radius: 2px;
    }

    /* ═══════════════════════════════
     SCHEDULE
  ═══════════════════════════════ */
    #schedule {
      padding: 7rem 1.5rem;
      background: var(--dark-2);
    }

    .schedule-wrap {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }

    .schedule-wrap::before {
      content: '';
      position: absolute;
      left: 135px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, transparent, rgba(200, 150, 42, 0.3), transparent);
    }

    .schedule-wrap::after {
      content: '';
      position: absolute;
      left: 135px;
      top: calc(var(--scroll-progress, 0) * (100% - 120px));
      width: 2px;
      height: 120px;
      background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
      box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold);
      z-index: 1;
      transition: top 0.1s ease-out;
    }

    .schedule-item {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 3rem;
      padding: 1.75rem 2rem;
      border-radius: 12px;
      border: 1px solid transparent;
      position: relative;
      margin-bottom: 1rem;
    }

    .schedule-item.reveal {
      transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s, box-shadow 0.4s, border-color 0.4s;
    }

    .schedule-item.active:hover {
      background: linear-gradient(90deg, rgba(200, 150, 42, 0.03) 0%, rgba(200, 150, 42, 0.08) 100%);
      border: 1px solid rgba(200, 150, 42, 0.15);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      transform: translateX(10px);
    }

    .schedule-time {
      font-size: 1.1rem;
      color: var(--gold);
      font-weight: 700;
      letter-spacing: .05em;
      padding-top: .15rem;
      text-align: right;
    }

    .schedule-dot {
      position: absolute;
      left: 131px;
      top: 2.15rem;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--dark-2);
      border: 2px solid var(--gold);
      box-shadow: 0 0 8px rgba(200, 150, 42, .5);
      transition: all 0.4s ease;
      z-index: 2;
    }

    .schedule-item.active:hover .schedule-dot {
      background: var(--gold-light);
      box-shadow: 0 0 15px var(--gold);
      transform: scale(1.4);
    }

    .schedule-content-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: .4rem;
    }

    .schedule-content-desc {
      font-size: .9rem;
      color: var(--text-muted);
      line-height: 1.6;
      font-weight: 300;
    }

    /* Staggered Animations */
    .schedule-item:nth-child(1) {
      transition-delay: 0.1s;
    }

    .schedule-item:nth-child(2) {
      transition-delay: 0.2s;
    }

    .schedule-item:nth-child(3) {
      transition-delay: 0.3s;
    }

    .schedule-item:nth-child(4) {
      transition-delay: 0.4s;
    }

    .schedule-item:nth-child(5) {
      transition-delay: 0.5s;
    }

    .schedule-item:nth-child(6) {
      transition-delay: 0.6s;
    }

    /* ═══════════════════════════════
     EVENT VIDEO
  ═══════════════════════════════ */
    #event-video {
      padding: 6rem 1.5rem 4rem 1.5rem;
      background: var(--dark);
      border-top: 1px solid rgba(200, 150, 42, 0.1);
      position: relative;
    }

    #event-video .video-container {
      max-width: 960px;
      margin: 0 auto;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(200, 150, 42, 0.2);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
      background: #000;
      aspect-ratio: 16/9;
      position: relative;
      transition: border-color 0.4s ease, box-shadow 0.4s ease;
    }

    #event-video .video-container:hover {
      border-color: rgba(200, 150, 42, 0.5);
      box-shadow: 0 25px 55px rgba(200, 150, 42, 0.15);
    }

    #event-video video,
    #event-video iframe {
      width: 100%;
      height: 100%;
      display: block;
      border: 0;
      object-fit: cover;
    }

    #event-video .video-container.reveal-zoom {
      opacity: 0;
      transform: scale(0.8) translateY(60px);
      transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    }

    #event-video .video-container.reveal-zoom.visible {
      opacity: 1;
      transform: scale(1) translateY(0);
    }

    /* ═══════════════════════════════
     PRICING
  ═══════════════════════════════ */
    #pricing {
      padding: 7rem 1.5rem;
      background: var(--dark);
    }

    .pricing-grid {
      max-width: 760px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    @keyframes featuredGlowPulse {
      0% {
        box-shadow: 0 0 20px rgba(200, 150, 42, .1);
      }

      50% {
        box-shadow: 0 0 40px rgba(200, 150, 42, .4);
      }

      100% {
        box-shadow: 0 0 20px rgba(200, 150, 42, .1);
      }
    }

    @keyframes shimmerTopMove {
      0% {
        transform: translateX(-100%);
      }

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

    @keyframes badgePulseAnim {
      0% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }

      100% {
        transform: scale(1);
      }
    }

    .price-card {
      border: 1px solid rgba(200, 150, 42, .2);
      border-radius: 2px;
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
      transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .price-card:hover {
      transform: translateY(-8px);
      border-color: rgba(200, 150, 42, .5);
      box-shadow: 0 15px 40px rgba(0, 0, 0, .4);
    }

    .price-card .price-image-wrapper {
      overflow: hidden;
    }

    .price-card .price-image-wrapper img {
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }

    .price-card:hover .price-image-wrapper img {
      transform: scale(1.08) !important;
    }

    .price-card.featured {
      border-color: var(--gold);
      background: linear-gradient(160deg, rgba(200, 150, 42, .1) 0%, rgba(200, 150, 42, .03) 100%);
      animation: featuredGlowPulse 4s infinite ease-in-out;
    }

    .price-card.featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
      animation: shimmerTopMove 3s infinite linear;
    }

    .price-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--gold);
      color: var(--ink);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .25rem .75rem;
      border-radius: 2px;
      animation: badgePulseAnim 2s infinite ease-in-out;
      transform-origin: center;
    }

    .price-label {
      font-size: .8rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .price-amount {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--gold-light);
      line-height: 1;
      margin-bottom: .25rem;
    }

    .price-amount span {
      font-size: 1.2rem;
      font-weight: 400;
    }

    .price-until {
      font-size: .8rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .price-features {
      list-style: none;
      margin-bottom: 2rem;
    }

    .price-features li {
      font-size: .9rem;
      color: var(--text-body);
      padding: .5rem 0;
      border-bottom: 1px solid rgba(200, 150, 42, .08);
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .price-features li::before {
      content: '✦';
      color: var(--gold);
      font-size: .6rem;
      flex-shrink: 0;
    }

    .price-features li:last-child {
      border-bottom: none;
    }

    .btn-full {
      display: block;
      width: 100%;
      text-align: center;
      text-decoration: none;
    }

    /* ═══════════════════════════════
     REGISTER (FORM)
  ═══════════════════════════════ */
    #register {
      padding: 7rem 1.5rem;
      background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(200, 150, 42, .1) 0%, transparent 70%),
        var(--dark-2);
    }

    .register-wrap {
      max-width: 560px;
      margin: 0 auto;
    }

    .form-row {
      margin-bottom: 1.25rem;
    }

    .form-label {
      display: block;
      font-size: .8rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: .5rem;
    }

    .form-input {
      width: 100%;
      padding: .85rem 1rem;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(200, 150, 42, .2);
      border-radius: 2px;
      color: var(--cream);
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: .95rem;
      outline: none;
      transition: border-color .2s;
    }

    .form-input:focus {
      border-color: var(--gold);
    }

    .form-input::placeholder {
      color: rgba(160, 139, 96, .4);
    }

    select.form-input option {
      background: var(--dark-2);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .qr-section {
      margin-top: 2.5rem;
      border: 1px solid rgba(200, 150, 42, .2);
      border-radius: 2px;
      padding: 2rem;
      background: rgba(200, 150, 42, .04);
      text-align: center;
    }

    .qr-title {
      font-size: .85rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.25rem;
    }

    .qr-box {
      width: 140px;
      height: 140px;
      margin: 0 auto 1rem;
      background: var(--cream);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .7rem;
      color: var(--dark);
      text-align: center;
      padding: .5rem;
    }

    .qr-note {
      font-size: .8rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ═══════════════════════════════
     PARTNERS
  ═══════════════════════════════ */
    #partners {
      padding: 4rem 1.5rem;
      background: var(--dark);
      border-top: 1px solid rgba(200, 150, 42, .1);
    }

    .partners-label {
      text-align: center;
      font-size: .75rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .partners-marquee {
      overflow: hidden;
      width: 100%;
      position: relative;
      padding: 1.5rem 0;
      mask-image: linear-gradient(to right, transparent, #fff 15%, #fff 85%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, #fff 15%, #fff 85%, transparent);
    }

    .partners-track {
      display: flex;
      width: max-content;
      animation: marqueeScroll 28s linear infinite;
    }

    .partners-marquee:hover .partners-track {
      animation-play-state: paused;
    }

    .partners-group {
      display: flex;
      align-items: center;
      justify-content: space-around;
      gap: 6rem;
      padding-right: 6rem;
    }

    .partners-group img {
      width: auto;
      object-fit: contain;
      opacity: 0.75;
      transition: opacity 0.3s, transform 0.3s;
    }

    .partners-group img:hover {
      opacity: 1;
      transform: scale(1.08);
    }

    .partner-img-svf {
      height: 36px;
    }

    .partner-img-caynen {
      height: 72px;
    }

    .partner-img-jci {
      height: 52px;
    }

    .partner-img-danang {
      height: 56px;
    }

    .partner-img-ceo {
      height: 36px;
      mix-blend-mode: screen;
    }

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

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

    .partner-item {
      font-size: .85rem;
      font-weight: 600;
      color: rgba(160, 139, 96, .5);
      letter-spacing: .1em;
      text-transform: uppercase;
      transition: color .2s;
    }

    .partner-item:hover {
      color: var(--gold);
    }

    /* ═══════════════════════════════
     FOOTER
  ═══════════════════════════════ */
    footer {
      padding: 4rem 1.5rem 2rem;
      background: var(--ink);
      border-top: 1px solid rgba(200, 150, 42, .15);
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(200, 150, 42, 0.15);
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .footer-logo {
      height: 48px;
      object-fit: contain;
      margin-bottom: 0.5rem;
      align-self: flex-start;
    }

    .footer-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.85rem;
      color: var(--text-body);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-item:hover {
      color: var(--gold-light);
    }

    .footer-item svg {
      width: 16px;
      height: 16px;
      fill: var(--gold);
      flex-shrink: 0;
    }

    .footer-text {
      font-size: 0.85rem;
      color: var(--text-body);
      line-height: 1.6;
    }

    .footer-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--gold-light);
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      letter-spacing: 0.05em;
    }

    .footer-socials {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .social-row {
      display: flex;
      gap: 2rem;
    }

    .social-btn {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.75rem;
      color: var(--text-body);
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 0.05em;
      transition: color .2s;
    }

    .social-btn:hover {
      color: var(--gold-light);
    }

    .social-btn:hover svg {
      fill: var(--gold-light);
    }

    .social-btn svg {
      width: 32px;
      height: 32px;
      fill: var(--gold);
      transition: fill .2s;
    }

    .social-icon-box {
      background: rgba(200, 150, 42, 0.1);
      color: var(--gold);
      width: 32px;
      height: 32px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: bold;
      border: 1px solid rgba(200, 150, 42, 0.2);
      transition: all .2s;
    }

    .social-btn:hover .social-icon-box {
      background: var(--gold);
      color: var(--ink);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    @media (max-width: 900px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }

    /* ─── STICKY CTA ─── */
    .sticky-cta {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 100;
      animation: fadeUp .8s 1.5s ease both;
    }

    .sticky-cta a {
      display: flex;
      align-items: center;
      gap: .6rem;
      background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 50%, var(--gold) 100%);
      color: var(--ink);
      font-family: 'Be Vietnam Pro', sans-serif;
      font-weight: 800;
      font-size: .9rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-decoration: none;
      padding: .85rem 1.75rem;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(200, 150, 42, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.25);
      position: relative;
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      animation: buttonPulse 2.5s infinite ease-in-out;
    }

    /* Shimmer Effect */
    .sticky-cta a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -150%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: skewX(-25deg);
      animation: buttonShimmer 3s infinite ease-in-out;
    }

    .sticky-cta a svg {
      transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .sticky-cta a:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 12px 35px rgba(200, 150, 42, 0.6);
      background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, var(--gold) 100%);
    }

    .sticky-cta a:hover svg {
      transform: rotateY(180deg);
    }

    @keyframes buttonShimmer {
      0% { left: -150%; }
      35% { left: 150%; }
      100% { left: 150%; }
    }

    @keyframes buttonPulse {
      0%, 100% {
        box-shadow: 0 4px 20px rgba(200, 150, 42, 0.4), 0 0 0 0px rgba(200, 150, 42, 0.3);
      }
      50% {
        box-shadow: 0 6px 25px rgba(200, 150, 42, 0.5), 0 0 0 10px rgba(200, 150, 42, 0);
      }
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      padding: 1.25rem 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18vw;
      background: rgba(13, 10, 4, .85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(200, 150, 42, .1);
      transition: background .3s;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo img {
      height: 52px;
      width: auto;
      object-fit: contain;
    }



    .nav-companions {
      display: flex;
      align-items: center;
      gap: 2.5rem;
    }

    .companion-text {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: var(--cream);
      margin-right: 0.5rem;
    }

    .nav-companions img {
      height: 48px;
      width: auto;
      object-fit: contain;
    }

    .nav-companions img.logo-caynen {
      transform: scale(1.7);
      margin: 0 12px;
    }

    .nav-companions img.logo-jci {
      transform: scale(1.4);
      margin: 0 8px;
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: .4;
        transform: scaleY(1);
      }

      50% {
        opacity: 1;
        transform: scaleY(1.1);
      }
    }

    @keyframes kickerReveal {
      from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes titleRevealSerif {
      from {
        opacity: 0;
        letter-spacing: -0.05em;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        letter-spacing: 0.18em;
        transform: translateY(0);
      }
    }

    @keyframes titleRevealBrushLeft {
      from {
        opacity: 0;
        transform: translate(-30px, 10px) scale(0.8) rotate(-5deg);
        filter: blur(10px);
      }
      to {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0deg);
        filter: blur(0);
      }
    }

    @keyframes titleRevealBrushRight {
      from {
        opacity: 0;
        transform: translate(30px, -10px) scale(0.8) rotate(5deg);
        filter: blur(10px);
      }
      to {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0deg);
        filter: blur(0);
      }
    }

    @keyframes floatSlowLanh {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-4px) rotate(-1.5deg); }
    }

    @keyframes floatSlowDao {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(4px) rotate(1.5deg); }
    }

    @keyframes subtitleLineReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes metaItemReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes ctaReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes scrollReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes scrollBob {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(6px); }
    }

    @keyframes blobFloat1 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(40px, -30px) scale(1.1); }
    }

    @keyframes blobFloat2 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-40px, 30px) scale(1.15); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ═══════════════════════════════
     GALLERY SCROLL
  ═══════════════════════════════ */
    #gallery-scroll {
      height: 400vh;
      background: var(--dark);
      position: relative;
    }

    .gallery-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      width: 100%;
      overflow: hidden;
      display: flex;
      align-items: center;
      background: var(--dark);
    }

    .gallery-track {
      display: flex;
      gap: 2.5rem;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      height: 65vh;
      will-change: transform;
      user-select: none;
      cursor: grab;
    }

    .gallery-track:active {
      cursor: grabbing;
    }

    .gallery-item {
      height: 100%;
      flex-shrink: 0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(200, 150, 42, 0.2);
      transition: transform 0.4s ease, border-color 0.4s ease;
      background: var(--dark-2);
    }

    .gallery-item:hover {
      transform: scale(1.02);
      border-color: rgba(200, 150, 42, 0.6);
      box-shadow: 0 20px 45px rgba(200, 150, 42, 0.15);
    }

    .gallery-item img {
      height: 100%;
      width: auto;
      object-fit: cover;
      filter: sepia(0.1) contrast(1.05);
      display: block;
      pointer-events: none;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      nav {
        padding: 1rem 1.25rem;
      }

      .nav-companions {
        display: none;
      }

      .about-stats {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 2rem;
        grid-template-columns: 1fr 1fr;
      }

      .speakers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .sticky-cta {
        bottom: 1rem;
        right: 1rem;
      }

      .sticky-cta a {
        padding: .65rem 1.25rem;
        font-size: .8rem;
      }
    }

    /* ─── PRELOADER STYLES ─── */
    body.loading {
      overflow: hidden !important;
      height: 100vh !important;
    }

    #preloader {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      background: var(--dark);
      z-index: 999999;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    }

    #preloader.fade-out {
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
    }

    .preloader-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .preloader-logo {
      width: 240px;
      height: auto;
      margin-bottom: 2rem;
      opacity: 0;
      transform: scale(0.9);
      animation: logoEntrance 1s forwards cubic-bezier(0.25, 1, 0.5, 1), logoPulse 2s infinite 1s ease-in-out;
    }

    .preloader-progress-wrap {
      width: 200px;
      height: 2px;
      background: rgba(200, 150, 42, 0.15);
      border-radius: 2px;
      overflow: hidden;
      position: relative;
    }

    .preloader-progress-bar {
      width: 0%;
      height: 100%;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes logoEntrance {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes logoPulse {
      0%, 100% {
        filter: drop-shadow(0 0 10px rgba(200, 150, 42, 0));
        transform: scale(1);
      }
      50% {
        filter: drop-shadow(0 0 20px rgba(200, 150, 42, 0.3));
        transform: scale(1.03);
      }
    }