
    :root {
      --gold: #D4AF37;
      --gold-light: #E5C158;
      --night: #0b0b0f;
      --ink: #0f1117;
      --mist: #eaeaea;
      --smoke: #a0a0a0;
      --grid: rgba(255,255,255,.06);
      --glass: linear-gradient(135deg, rgba(32,32,38,.55), rgba(68,68,72,.35));
      --glass-strong: linear-gradient(135deg, rgba(36,36,40,.75), rgba(80,80,89,.55));
      --radius-glass: 1.75rem;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--night);
      color: var(--mist);
      font-family: 'Montserrat', sans-serif;
      overflow-x: hidden;
      position: relative;
    }

    /* Animated Background */
    .animated-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .animated-bg::before {
      content: "";
      position: absolute;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at 20% 50%, rgba(212,175,55,.08) 0%, transparent 50%),
                  radial-gradient(circle at 80% 80%, rgba(212,175,55,.06) 0%, transparent 50%);
      animation: float 20s ease-in-out infinite;
    }

    .grid-overlay {
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image: radial-gradient(circle at 1px 1px, var(--grid) 1px, transparent 0);
      background-size: 22px 22px;
      opacity: .22;
      z-index: 1;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      33% { transform: translate(30px, -50px) rotate(120deg); }
      66% { transform: translate(-20px, 20px) rotate(240deg); }
    }

    /* Glass Effects */
    .glass { 
      background: var(--glass); 
      backdrop-filter: blur(22px); 
      border: 1px solid rgba(255,255,255,.08); 
      border-radius: var(--radius-glass); 
      box-shadow: 0 20px 60px rgba(0,0,0,.45); 
    }
    
    .glass-strong { 
      background: var(--glass-strong); 
      backdrop-filter: blur(28px); 
      border: 1px solid rgba(255,255,255,.12); 
      border-radius: var(--radius-glass); 
    }

    /* Typography */
    .text-gold { color: var(--gold) !important; }
    .text-gradient {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Buttons */
    .cta-btn { 
      background: linear-gradient(135deg, var(--gold), rgba(212,175,55,.85)); 
      border: none; 
      color: var(--ink); 
      font-weight: 700; 
      padding: .75rem 2rem; 
      border-radius: 999px; 
      transition: all .3s; 
      display: inline-flex; 
      align-items: center; 
      gap: .5rem;
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }
    
    .cta-btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      opacity: 0;
      transition: opacity .3s;
    }
    
    .cta-btn:hover::before { opacity: 0; }
    .cta-btn:hover { 
      transform: translateY(-2px); 
      box-shadow: 0 10px 30px rgba(212,175,55,.3);
      color: var(--ink);
    }
    .book-transfer-btn:hover {
  color: #fff !important;
}
.book-transfer-btn:hover > * {
  color: #fff !important;
}

    
    .cta-btn > * { position: relative; z-index: 1; }

    .bg-gold {
      background: linear-gradient(135deg, var(--gold), rgba(212,175,55,.85));
      color: var(--ink) !important;
      transition: all .3s;
    }

    .bg-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(212,175,55,.3);
    }

    /* Navbar */
    .nav-shadow { 
      box-shadow: 0 10px 35px rgba(0,0,0,.45); 
      border-bottom: 1px solid rgba(255,255,255,.08); 
    }
    
    .link-ghost { 
      border: 1px solid rgba(255,255,255,.15); 
      border-radius: 999px; 
      padding: .55rem 1rem; 
      display: inline-flex; 
      align-items: center; 
      gap: .5rem; 
      text-decoration: none; 
      color: var(--mist); 
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }
    
    .link-ghost::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,.1);
      opacity: 0;
      transition: opacity .3s;
    }
    
    .link-ghost:hover::before { opacity: 1; }
    .link-ghost:hover { 
      transform: translateY(-2px); 
      border-color: rgba(255,255,255,.25);
      color: var(--mist);
    }
    
    .link-ghost.active { 
      background: rgba(255,255,255,.08); 
      color: var(--gold); 
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 120px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
    }

    .hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(11, 11, 15, 1));
  z-index: 1;
}


    .hero-content {
      position: relative;
      z-index: 2;
    }

    .event-badge {
      display: inline-block;
      background: rgba(212,175,55,.15);
      border: 1px solid rgba(212,175,55,.3);
      padding: .5rem 1.5rem;
      border-radius: 999px;
      font-size: .9rem;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    /* Countdown */
    .countdown-wrapper {
      max-width: 700px;
      margin: 0 auto;
    }

    .countdown { 
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-top: 3rem;
    }
    
    .countdown-item { 
      text-align: center;
      padding: 2rem 1rem;
      background: var(--glass-strong);
      backdrop-filter: blur(28px);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 1rem;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }

    .countdown-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(212,175,55,.1), transparent);
      opacity: 0;
      transition: opacity .3s;
    }
    
    .countdown-item:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 15px 40px rgba(212,175,55,.25);
      border-color: rgba(212,175,55,.3);
    }

    .countdown-item:hover::before {
      opacity: 1;
    }
    
    .countdown-item span { 
      display: block; 
      font-size: 3rem; 
      font-weight: 800; 
      color: var(--gold);
      font-family: 'Playfair Display', serif;
      line-height: 1;
      margin-bottom: .5rem;
      position: relative;
      z-index: 1;
    }
    
    .countdown-item small { 
      font-size: .75rem; 
      color: var(--smoke); 
      text-transform: uppercase; 
      letter-spacing: .1em;
      font-weight: 600;
      position: relative;
      z-index: 1;
    }

    /* Sections */
    section { 
      padding: 5rem 0; 
      position: relative;
      z-index: 2;
    }

    /* Article Styling */
    article p { 
      color: var(--smoke); 
      line-height: 1.8;
      font-size: 1.05rem;
    }
    
    article h2 { 
      font-family: 'Playfair Display', serif; 
      margin-top: 2rem; 
      color: var(--gold);
      font-size: 2rem;
    }

    /* Event Info Card */
    .event-meta { 
      color: var(--smoke); 
      font-size: .95rem; 
    }
    
    .event-meta i { 
      color: var(--gold);
      margin-right: .5rem;
    }
    
    .event-meta a {
      color: var(--gold);
      transition: color .3s;
    }
    
    .event-meta a:hover {
      color: var(--gold-light);
    }

    /* Highlight Cards */
    .highlight-card {
      transition: all .3s;
      height: 100%;
      overflow: hidden;
    }
    
    .highlight-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 70px rgba(212,175,55,.15);
    }
    
    .highlight-card img {
      transition: transform .5s;
    }
    
    .highlight-card:hover img {
      transform: scale(1.1);
    }

    .footer-reimagined { padding-top: 6rem; padding-bottom: 2rem; position: relative; overflow: hidden; }
    .footer-reimagined h5 { text-transform: uppercase; letter-spacing: .08em; font-size: 0.9rem; color: var(--smoke); }
    .footer-reimagined .footer-cta h2 { font-family: 'Playfair Display', serif; text-shadow: 0 4px 20px rgba(0,0,0,.4); }
    .footer-divider { border: 0; height: 1px; background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); }
    .footer-bottom { font-size: 0.85rem; color: var(--smoke); }
    .back-to-top { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }
    .footer-link:hover { color: var(--gold) !important; }
    
    .social-link-swap { position: relative; }
    .social-link-swap i, .social-link-swap img { transition: opacity 0.3s ease; }
    .social-link-swap img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0; }
    .social-link-swap:hover i { opacity: 0; }
    .social-link-swap:hover img { opacity: 1; }

    /* FAB */
    .fab-container { 
      position: fixed; 
      bottom: 24px; 
      right: 24px; 
      z-index: 1060; 
      display: flex; 
      flex-direction: column; 
      align-items: center; 
    }
    
    .fab-button, .fab-option { 
      width: 60px; 
      height: 60px; 
      border-radius: 999px; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      cursor: pointer; 
      text-decoration: none; 
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
      box-shadow: 0 10px 30px rgba(0,0,0,.3); 
    }
    
    .fab-button:hover, .fab-option:hover { 
      transform: scale(1.1) translateY(-4px); 
      box-shadow: 0 0 25px rgba(212,175,55,0.3); 
    }
    
    .fab-options { 
      display: flex; 
      flex-direction: column; 
      align-items: center; 
      gap: 1rem; 
      margin-bottom: 1rem; 
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
      transform: translateY(20px) scale(0.9); 
      opacity: 0; 
      pointer-events: none; 
    }
    
    .fab-container.active .fab-options { 
      transform: translateY(0) scale(1); 
      opacity: 1; 
      pointer-events: auto; 
    }
    
    .fab-button i { 
      transition: transform 0.3s ease; 
    }
    
    .fab-container.active .fab-button i { 
      transform: rotate(135deg); 
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-section { min-height: auto; padding-top: 100px; padding-bottom: 3rem; }
      .countdown { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
      .countdown-item { padding: 1.5rem .75rem; }
      .countdown-item span { font-size: 2.2rem; }
      section { padding: 3rem 0; }
    }


    /* ==============================
   Fight Card Styles
============================== */
.fight-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  transition: all 0.35s ease;
  background: var(--glass);
  backdrop-filter: blur(20px);
}

.fight-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px rgba(212,175,55,0.2);
  border-color: rgba(212,175,55,0.3);
}

.fight-card .vs {
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.25rem;
  margin: 0 1rem;
}

.fight-card strong {
  color: var(--mist);
  font-size: 1rem;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .fight-card .vs {
    display: block;
    margin: .5rem 0;
    text-align: center;
  }

  .fight-card strong {
    width: 100%;
    text-align: center;
  }
}
#mobileMenu {
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
}


/* ==============================
   Schedule Table Styles
============================== */
.schedule-table table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.schedule-table table tbody tr:last-child {
  border-bottom: none;
}
.schedule-table table td, 
.schedule-table table th {
  padding: 0.75rem 0.5rem;
}
.schedule-table .clock {
  font-size: 1.2rem;
}
/* ==============================
   Race Weekend Schedule Styles
============================== */
.schedule-day {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  transition: all 0.35s ease;
  background: var(--glass);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.schedule-day::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #d4af37, #e3d08d);
}

.schedule-day:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(212,175,55,0.25);
  border-color: rgba(212,175,55,0.3);
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-list li:last-child {
  border-bottom: none;
}

.schedule-list .session {
  font-weight: 600;
  color: var(--mist);
}

.schedule-list .time {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 576px) {
  .schedule-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .schedule-list .time {
    margin-top: 0.25rem;
    font-size: 0.95rem;
  }
}

/* ==============================
  adipec
============================== */
.day-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.day-content.active {
  display: block;
  opacity: 1;
}

.feature-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.feature-card:hover .icon-wrapper {
  background: rgba(212,175,55,0.15);
}
