/* =====================================================================
   VolcanoBet AU — Premium Australian Sports Events Platform
   Design system: HTML5 / CSS3 / Vanilla JS  (no frameworks)
   ===================================================================== */

/* -------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------- */
:root {
  /* Core palette */
  --navy: #0a1830;
  --navy-800: #0d2144;
  --navy-deep: #071223;
  --navy-700: #14294a;
  --charcoal: #14181f;
  --charcoal-800: #1b2029;
  --gold: #e7b53c;
  --gold-soft: #f2cd6b;
  --gold-deep: #c8952a;
  --white: #ffffff;
  --light-gray: #eef1f6;
  --gray: #c3cbd8;
  --muted: #8a97ab;
  --ink: #0b1220;

  /* Surfaces */
  --bg: #0a1830;
  --bg-alt: #081426;
  --surface: #101f3a;
  --surface-2: #132443;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-blur: 16px;

  /* Typography */
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(3, 8, 20, 0.25);
  --shadow-md: 0 16px 40px rgba(3, 8, 20, 0.35);
  --shadow-lg: 0 30px 70px rgba(3, 8, 20, 0.5);
  --shadow-gold: 0 12px 34px rgba(231, 181, 60, 0.28);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(18px, 4vw, 48px);
  --header-h: 76px;
}

/* -------------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--light-gray);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg { max-width: 100%; display: block; }

img { height: auto; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold); color: var(--navy-deep); }

/* Ambient background texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 600px at 82% -6%, rgba(231, 181, 60, 0.14), transparent 60%),
    radial-gradient(900px 620px at -8% 8%, rgba(30, 76, 140, 0.35), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

/* -------------------------------------------------------------------
   3. Layout helpers
   ------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 9vw, 120px);
  position: relative;
}

.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(38px, 5vw, 60px);
  text-align: center;
}

.section-head.left { margin-inline: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(231, 181, 60, 0.1);
  border: 1px solid rgba(231, 181, 60, 0.28);
  padding: 7px 15px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.section-title {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--gray);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.text-gold { color: var(--gold); }

/* Utility helpers (replace all inline styles) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.is-relative { position: relative; }
.mt-24 { margin-top: 24px; }
.pt-0 { padding-top: 0; }
.section-head.tight { margin-bottom: 20px; }
.foot-tag { color: var(--muted); font-size: 0.85rem; }
.fineprint { color: var(--muted); font-size: 0.82rem; margin-top: 14px; }

/* -------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), color 0.35s var(--ease);
  will-change: transform;
  white-space: nowrap;
  cursor: pointer;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(231, 181, 60, 0.4);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}
.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(231, 181, 60, 0.4);
}
.btn-ghost:hover { background: rgba(231, 181, 60, 0.12); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* -------------------------------------------------------------------
   5. Header / navigation
   ------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease), height 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 18, 36, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(3, 8, 20, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.24rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  flex: none;
}
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray);
  padding: 9px 15px;
  border-radius: var(--r-pill);
  position: relative;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 3px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--glass-bg);
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------
   6. Hero
   ------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(40px, 8vw, 90px));
  padding-bottom: clamp(60px, 9vw, 120px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-badge {
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.15rem);
  line-height: 1.04;
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 46px);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white);
}
.hero-stat .num span { color: var(--gold); }
.hero-stat .label {
  font-size: 0.86rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
}
.hero-visual .hero-img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-strong);
}
.hero-float {
  position: absolute;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}
.hero-float .fi {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(231, 181, 60, 0.16);
  color: var(--gold);
  flex: none;
}
.hero-float .ft { font-size: 0.82rem; color: var(--gray); }
.hero-float .fv { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 0.98rem; }
.hero-float.one { top: 12%; left: -6%; }
.hero-float.two { bottom: 10%; right: -5%; animation-delay: 1.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Trust ribbon */
.ribbon {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
}
.ribbon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 0.92rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.ribbon-item svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

/* -------------------------------------------------------------------
   7. Notice banner (No-bets)
   ------------------------------------------------------------------- */
.notice {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(231, 181, 60, 0.12), rgba(231, 181, 60, 0.04));
  border: 1px solid rgba(231, 181, 60, 0.32);
}
.notice .n-icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(231, 181, 60, 0.18);
  color: var(--gold);
}
.notice h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.notice p { color: var(--gray); font-size: 0.96rem; }

/* -------------------------------------------------------------------
   8. Cards / grids
   ------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.about-visual { position: relative; }
.about-visual img {
  width: 100%;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
}
.about-points { display: grid; gap: 16px; margin-top: 26px; }
.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}
.about-point .cx {
  width: 34px; height: 34px; flex: none;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(231, 181, 60, 0.16);
  color: var(--gold);
}
.about-point strong { color: var(--white); display: block; font-family: var(--font-display); font-size: 1rem; }
.about-point span { color: var(--gray); font-size: 0.92rem; }

/* Feature (why choose) icons */
.feature .fic {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(231, 181, 60, 0.2), rgba(231, 181, 60, 0.05));
  border: 1px solid rgba(231, 181, 60, 0.24);
  color: var(--gold);
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.16rem; margin-bottom: 8px; }
.feature p { color: var(--gray); font-size: 0.96rem; }
.feature::after {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(231, 181, 60, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.feature:hover::after { opacity: 1; }

/* -------------------------------------------------------------------
   9. How it works (steps)
   ------------------------------------------------------------------- */
.steps { display: grid; gap: clamp(18px, 2.4vw, 26px); grid-template-columns: repeat(5, 1fr); }
.step {
  position: relative;
  padding: 30px 24px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: rgba(231, 181, 60, 0.4); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: var(--navy-deep);
  margin-bottom: 18px;
  box-shadow: var(--shadow-gold);
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: 0.92rem; }
.step-ic { position: absolute; top: 26px; right: 22px; color: rgba(231,181,60,0.35); }
.step-ic svg { width: 30px; height: 30px; }

/* -------------------------------------------------------------------
   10. Events
   ------------------------------------------------------------------- */
.events-grid { grid-template-columns: repeat(3, 1fr); }
.event-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}
.event-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.event-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.event-card:hover .event-media img { transform: scale(1.07); }
.event-date {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(7, 18, 36, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 8px 12px;
  text-align: center;
  line-height: 1.05;
}
.event-date .d { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--gold); display: block; }
.event-date .m { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); }
.event-tag {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(231, 181, 60, 0.92);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 5px 11px;
  border-radius: var(--r-pill);
}
.event-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.event-loc {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.84rem; color: var(--gold); font-weight: 500;
  margin-bottom: 8px; font-family: var(--font-display);
}
.event-loc svg { width: 15px; height: 15px; }
.event-body h3 { font-size: 1.24rem; margin-bottom: 10px; }
.event-body p { color: var(--gray); font-size: 0.93rem; margin-bottom: 20px; flex: 1; }
.event-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.event-price { font-family: var(--font-display); }
.event-price span { display: block; font-size: 0.74rem; color: var(--muted); }
.event-price strong { font-size: 1.16rem; color: var(--white); }

/* -------------------------------------------------------------------
   11. Ticket section
   ------------------------------------------------------------------- */
.ticket-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.ticket-list { display: grid; gap: 14px; margin: 26px 0 30px; }
.ticket-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--gray); font-size: 0.98rem;
}
.ticket-list li svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 1px; }
.ticket-list li strong { color: var(--white); }

/* Ticket visual */
.ticket-visual { display: grid; place-items: center; }
.ticket {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.ticket-top {
  padding: 24px 26px;
  background: linear-gradient(120deg, rgba(231,181,60,0.16), rgba(231,181,60,0.03));
  border-bottom: 2px dashed var(--line-strong);
  position: relative;
}
.ticket-top::before,
.ticket-top::after {
  content: "";
  position: absolute; bottom: -12px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg);
}
.ticket-top::before { left: -12px; }
.ticket-top::after { right: -12px; }
.ticket-brand { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.ticket-brand .tb { font-family: var(--font-display); font-weight: 700; color: var(--white); }
.ticket-brand .tb span { color: var(--gold); }
.ticket-kind { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.ticket-top h3 { font-size: 1.4rem; margin-bottom: 4px; }
.ticket-top .tsub { color: var(--gray); font-size: 0.9rem; }
.ticket-bot { padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ticket-meta { display: grid; gap: 10px; }
.ticket-meta div span { font-size: 0.72rem; color: var(--muted); display: block; text-transform: uppercase; letter-spacing: 0.08em; }
.ticket-meta div strong { color: var(--white); font-family: var(--font-display); font-size: 0.98rem; }
.ticket-code {
  display: grid; place-items: center; gap: 6px;
  font-size: 0.68rem; color: var(--muted);
}
.ticket-barcode {
  width: 90px; height: 90px;
  border-radius: 12px;
  background:
    repeating-linear-gradient(90deg, var(--white) 0 3px, transparent 3px 6px);
  background-color: var(--navy-deep);
  padding: 10px;
  border: 1px solid var(--line-strong);
}

/* -------------------------------------------------------------------
   12. FAQ accordion
   ------------------------------------------------------------------- */
.faq-wrap { max-width: 860px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.faq-item.open { border-color: rgba(231, 181, 60, 0.4); background: var(--surface-2); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--white);
}
.faq-q .qi {
  width: 30px; height: 30px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(231, 181, 60, 0.16);
  color: var(--gold);
  transition: transform 0.4s var(--ease), background 0.35s var(--ease);
}
.faq-item.open .qi { transform: rotate(45deg); background: var(--gold); color: var(--navy-deep); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a-inner { padding: 0 24px 22px; color: var(--gray); font-size: 0.97rem; }

/* -------------------------------------------------------------------
   13. CTA banner
   ------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: clamp(44px, 6vw, 74px);
  text-align: center;
  background:
    radial-gradient(700px 340px at 50% -20%, rgba(231, 181, 60, 0.28), transparent 60%),
    linear-gradient(135deg, var(--navy-700), var(--navy-deep));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0 2px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.05) 0 2px, transparent 2px);
  background-size: 44px 44px, 60px 60px;
  opacity: 0.5;
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; position: relative; }
.cta-banner p { color: var(--gray); max-width: 620px; margin: 0 auto 30px; position: relative; font-size: 1.06rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* -------------------------------------------------------------------
   14. 18+ notice
   ------------------------------------------------------------------- */
.age-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(198, 42, 42, 0.14), rgba(231,181,60,0.06));
  border: 1px solid rgba(231, 181, 60, 0.3);
}
.age-badges { display: flex; gap: 14px; flex-wrap: wrap; flex: none; }
.age-badge {
  width: 78px; height: 78px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--white);
  background: radial-gradient(circle at 30% 25%, #e5484d, #b0242a);
  border: 3px solid rgba(255,255,255,0.85);
  box-shadow: 0 10px 26px rgba(176, 36, 42, 0.45);
  flex: none;
}
.age-badge.alt {
  background: radial-gradient(circle at 30% 25%, var(--gold-soft), var(--gold-deep));
  color: var(--navy-deep);
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.1;
  box-shadow: var(--shadow-gold);
}
.age-text h3 { font-size: 1.3rem; margin-bottom: 6px; }
.age-text p { color: var(--gray); font-size: 0.98rem; }

/* -------------------------------------------------------------------
   15. Responsible + disclaimer
   ------------------------------------------------------------------- */
.resp-grid { grid-template-columns: repeat(3, 1fr); }
.resp-card { text-align: left; }
.resp-card .ric {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(231, 181, 60, 0.14);
  color: var(--gold); margin-bottom: 16px;
}
.resp-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.resp-card p { color: var(--gray); font-size: 0.94rem; }

.disclaimer {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  padding: clamp(26px, 4vw, 44px);
}
.disclaimer h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 16px; }
.disclaimer p { color: var(--gray); font-size: 0.98rem; margin-bottom: 14px; }
.disclaimer p:last-child { margin-bottom: 0; }
.disclaimer strong { color: var(--white); }

/* -------------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-alt), #060f1e);
  padding-top: clamp(52px, 7vw, 80px);
  margin-top: clamp(40px, 6vw, 70px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--gray); font-size: 0.94rem; max-width: 320px; margin-bottom: 20px; }
.footer-badges { display: flex; gap: 10px; align-items: center; }
.foot-18 {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.9rem;
  color: var(--white);
  background: radial-gradient(circle at 30% 25%, #e5484d, #b0242a);
  border: 2px solid rgba(255,255,255,0.8);
  flex: none;
}
.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 18px;
  font-family: var(--font-display);
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a {
  color: var(--gray);
  font-size: 0.94rem;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
  display: inline-flex; align-items: center; gap: 7px;
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-note {
  padding: 24px 0 30px;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-note p { margin-bottom: 10px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 0 34px;
  border-top: 1px solid var(--line);
}
.footer-bottom p { color: var(--muted); font-size: 0.86rem; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal-links a { color: var(--muted); font-size: 0.86rem; transition: color 0.3s var(--ease); }
.footer-legal-links a:hover { color: var(--gold); }

/* -------------------------------------------------------------------
   17. Legal / content pages
   ------------------------------------------------------------------- */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(50px, 8vw, 90px));
  padding-bottom: clamp(40px, 6vw, 70px);
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 320px at 50% -30%, rgba(231, 181, 60, 0.16), transparent 60%);
}
.page-hero .breadcrumb {
  display: inline-flex; gap: 8px; align-items: center;
  color: var(--muted); font-size: 0.86rem; margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--gray); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 12px; }
.page-hero p { color: var(--gray); max-width: 620px; margin-inline: auto; }
.page-hero .updated {
  display: inline-block; margin-top: 16px;
  font-size: 0.82rem; color: var(--muted);
  padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}
.legal-toc h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold); margin-bottom: 14px; font-family: var(--font-display);
}
.legal-toc ul { display: grid; gap: 6px; }
.legal-toc a {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  padding: 7px 12px;
  border-radius: 10px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
  border-left: 2px solid transparent;
}
.legal-toc a:hover, .legal-toc a.active {
  color: var(--white); background: rgba(231,181,60,0.08);
  border-left-color: var(--gold);
}

.prose { max-width: 760px; }
.prose h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  margin: 40px 0 14px;
  padding-top: 8px;
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.14rem; margin: 26px 0 10px; color: var(--gold-soft); }
.prose p { color: var(--gray); margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 4px; display: grid; gap: 10px; }
.prose ul li, .prose ol li {
  position: relative; padding-left: 28px; color: var(--gray);
}
.prose ul li::before {
  content: ""; position: absolute; left: 4px; top: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}
.prose ol { counter-reset: item; list-style: none; }
.prose ol li { counter-increment: item; }
.prose ol li::before {
  content: counter(item);
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(231,181,60,0.16); color: var(--gold);
  font-size: 0.74rem; font-weight: 700; font-family: var(--font-display);
  display: grid; place-items: center;
}
.prose strong { color: var(--white); }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose .callout {
  border-radius: var(--r-md);
  border: 1px solid rgba(231,181,60,0.3);
  background: rgba(231,181,60,0.07);
  padding: 18px 22px;
  margin: 22px 0;
}
.prose .callout p { margin: 0; color: var(--light-gray); }

/* -------------------------------------------------------------------
   18. Contact page
   ------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.contact-info { display: grid; gap: 16px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.contact-card:hover { border-color: rgba(231,181,60,0.4); transform: translateY(-3px); }
.contact-card .cc-ic {
  width: 48px; height: 48px; flex: none;
  border-radius: 14px; display: grid; place-items: center;
  background: rgba(231,181,60,0.14); color: var(--gold);
}
.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--gray); font-size: 0.94rem; }
.contact-card a:hover { color: var(--gold); }

.form-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--light-gray);
  margin-bottom: 8px;
}
.field label .req { color: var(--gold); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(231,181,60,0.14);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23e7b53c' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px;
}
.field .error-msg {
  display: none;
  color: #ff8a8a; font-size: 0.82rem; margin-top: 6px;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #e5484d; box-shadow: 0 0 0 4px rgba(229,72,77,0.14); }
.field.invalid .error-msg { display: block; }
.checkbox-field {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 20px;
  color: var(--gray); font-size: 0.9rem;
}
.checkbox-field input { width: 20px; height: 20px; flex: none; accent-color: var(--gold); margin-top: 2px; }
.form-success {
  display: none;
  align-items: center; gap: 12px;
  padding: 16px 20px; margin-bottom: 20px;
  border-radius: var(--r-md);
  background: rgba(46, 160, 106, 0.14);
  border: 1px solid rgba(46, 160, 106, 0.4);
  color: #7ee2b0;
  font-size: 0.94rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; }

/* -------------------------------------------------------------------
   19. Back to top
   ------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top svg { width: 22px; height: 22px; }

/* -------------------------------------------------------------------
   20. Scroll reveal animation
   ------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* -------------------------------------------------------------------
   21. Responsive
   ------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .resp-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; display: none; }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px var(--gutter) 26px;
    background: rgba(8, 18, 36, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s var(--ease), opacity 0.35s var(--ease), visibility 0.45s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { padding: 13px 16px; font-size: 1rem; border-radius: var(--r-md); }
  .nav-links a::after { display: none; }
  .nav-links a:hover { background: rgba(231,181,60,0.1); }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 520px; margin-inline: auto; }
  .hero-float.one { left: 2%; }
  .hero-float.two { right: 2%; }
  .about-grid,
  .ticket-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-visual, .ticket-visual { max-width: 520px; margin-inline: auto; }
  .grid-3, .events-grid, .resp-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .steps { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .hero-float { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .age-block { flex-direction: column; align-items: flex-start; text-align: left; }
  .ribbon-inner { justify-content: center; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Print */
@media print {
  .site-header, .back-to-top, .cta-banner, .menu-toggle { display: none !important; }
  body { background: #fff; color: #111; }
}
