:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --text: #FAFAFA;
  --muted: #A3A3A3;
  --primary: #F97316;
  --secondary: #FB923C;
  --accent: #22C55E;
  --border: rgba(250, 250, 250, 0.12);
  --gold: #D4AF37;
  --gold-light: #F5D76E;
  --luxury-serif: Georgia, "Times New Roman", Times, serif;
  --dark-matte: #0A0A0A;
  --premium-gold: #D4AF37;
  --exclusive-accent: #F97316;
  --max-w: 1200px;
  --nav-h: 52px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--luxury-serif);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(249, 115, 22, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #0d0d0d 40%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 35%),
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(250, 250, 250, 0.008) 2px 4px);
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.disclosure-bar {
  width: 100%;
  position: relative;
  z-index: 100;
  min-height: 36px;
  background: linear-gradient(90deg, var(--primary) 50%, #FAFAFA 50%);
}

.disclosure-bar .disclosure-light,
.disclosure-bar .disclosure-dark {
  margin: 0;
  padding: 8px 16px;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  font-family: system-ui, sans-serif;
}

.disclosure-bar .disclosure-light {
  color: #FAFAFA;
  clip-path: inset(0 50% 0 0);
}

.disclosure-bar .disclosure-dark {
  position: absolute;
  inset: 0;
  color: #1a1a1a;
  clip-path: inset(0 0 0 50%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--surface);
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  background-image: repeating-linear-gradient(0deg, transparent 0 1px, rgba(255, 255, 255, 0.02) 1px 2px);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 14px;
  list-style: none;
}

.nav-links a {
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, monospace;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 210;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #0A0A0A;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 15px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.mobile-nav a:hover {
  color: var(--gold-light);
}

main {
  flex: 1;
  position: relative;
  z-index: 1;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-logo img {
  height: 28px;
  width: auto;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-badges img {
  max-height: 48px;
  width: auto;
}

.footer-badges a {
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 20px;
}

.footer-links a {
  font-family: system-ui, sans-serif;
  font-size: 13px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-nz-disclosure {
  font-size: 11px;
  line-height: 1.65;
  color: rgba(163, 163, 163, 0.85);
  max-width: 720px;
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(163, 163, 163, 0.6);
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.94);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.hidden {
  display: none;
}

.age-gate-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.age-gate-card h2 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.age-gate-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  font-family: system-ui, sans-serif;
}

.age-gate-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.age-yes,
.age-no,
.cookie-accept,
.cookie-essential {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  font-family: system-ui, sans-serif;
  transition: background 0.2s ease, color 0.2s ease;
}

.age-yes,
.cookie-accept {
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
  color: var(--bg);
  border: none;
}

.age-yes:hover,
.cookie-accept:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--secondary) 100%);
}

.age-no,
.cookie-essential {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.age-no:hover,
.cookie-essential:hover {
  border-color: var(--muted);
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-inner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
  font-family: system-ui, sans-serif;
}

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-page {
  padding: 48px 24px 64px;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  color: var(--gold-light);
}

.legal-inner h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 28px 0 12px;
  color: var(--text);
}

.legal-inner h3 {
  font-size: 1rem;
  margin: 16px 0 8px;
}

.legal-inner p,
.legal-inner li {
  font-family: system-ui, sans-serif;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-inner ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-inner li {
  margin-bottom: 8px;
}

.contact-form {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.contact-form label {
  display: block;
  font-family: system-ui, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: system-ui, sans-serif;
  font-size: 15px;
  margin-bottom: 16px;
  border-radius: 2px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
  color: var(--bg);
  border: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  font-family: system-ui, sans-serif;
}

.email-error {
  font-size: 13px;
  color: #ef4444;
  margin: -10px 0 12px;
  font-family: system-ui, sans-serif;
}

.email-error.hidden {
  display: none;
}

.form-success {
  display: none;
  padding: 24px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-family: system-ui, sans-serif;
  color: var(--text);
}

.form-success.visible {
  display: block;
}

.contact-form.hidden {
  display: none;
}

.sub-hero {
  padding: 0 0 40px;
  background: var(--bg);
}

.sub-hero-strip {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.sub-hero-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-hero-body {
  padding: 40px 24px 0;
  text-align: center;
}

.sub-hero-body h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.sub-hero-body .sub-lead {
  font-family: system-ui, sans-serif;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
}

.not-found {
  padding: 80px 24px;
  text-align: center;
}

.not-found h1 {
  font-size: 4rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.not-found p {
  font-family: system-ui, sans-serif;
  color: var(--muted);
  margin-bottom: 24px;
}

.not-found a {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
  color: var(--bg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: system-ui, sans-serif;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .mobile-overlay,
  .mobile-nav {
    display: flex;
  }

  .sub-hero-strip {
    height: 80px;
  }
}

@media (max-width: 600px) {
  .sub-hero-strip {
    height: 60px;
  }

  .disclosure-bar p {
    font-size: 11px;
    padding: 8px 12px;
  }
}

@media (max-width: 375px) {
  .hero-strip,
  .sub-hero-strip,
  .decor-side,
  .decor-inline,
  .inplay-image-rail,
  .payment-rail .rail-img,
  .markets-aside-img,
  .licence-visuals {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-strip img,
  .sub-hero-strip img,
  .decor-side img,
  .decor-inline img,
  .inplay-image-rail img,
  .payment-rail .rail-img img,
  .markets-aside-img img,
  .licence-visuals img {
    max-width: 100%;
    height: auto;
  }

  .sub-hero-strip {
    max-height: 60px;
  }
}
