:root {
  --bg: #080015;
  --surface: #12002E;
  --text: #F0E7FF;
  --muted: #9D80C4;
  --primary: #FF00FF;
  --secondary: #00FFFF;
  --accent: #FFFF00;
  --border: rgba(255,0,255,0.2);
  --font: "Segoe UI", Helvetica, "Helvetica Neue", Arial, sans-serif;
  --max: 1200px;
  --neo-gradient-style: gradient vibrant neo mesh gradient colorful modern;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 45% at 15% -5%, rgba(255, 0, 255, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 40% at 95% 10%, rgba(0, 255, 255, 0.16), transparent 50%),
    linear-gradient(165deg, var(--bg) 0%, #0e0024 42%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(125deg, transparent 0, transparent 48px, rgba(255, 255, 0, 0.015) 48px, rgba(255, 255, 0, 0.015) 49px),
    radial-gradient(circle at 60% 80%, rgba(255, 0, 255, 0.08), transparent 40%);
  opacity: 0.9;
}

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

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

a {
  color: var(--secondary);
  text-decoration: none;
}

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

.disclosure-banner {
  background: #f4f0fa;
  color: #5a4a6e;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  padding: 6px 16px;
  width: 100%;
  line-height: 1.45;
  position: relative;
  z-index: 20;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 58px;
}

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

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

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 86vw);
  height: 100vh;
  background: var(--surface);
  z-index: 200;
  padding: 72px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -12px 0 40px rgba(255, 0, 255, 0.18);
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer a {
  display: block;
  color: var(--text);
  font-weight: 600;
  padding: 12px 14px;
  border-left: 3px solid transparent;
  margin-bottom: 4px;
}

.nav-drawer a:hover,
.nav-drawer a.is-active {
  border-left-color: var(--accent);
  background: rgba(255, 0, 255, 0.1);
  color: var(--accent);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 0, 21, 0.72);
  z-index: 150;
}

.nav-overlay.is-visible {
  display: block;
}

body.nav-open {
  overflow: hidden;
}

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

  .nav-toggle {
    display: flex;
  }

  .nav-drawer {
    display: block;
  }
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 64px;
  padding: 48px 24px 32px;
  background:
    linear-gradient(200deg, rgba(255, 0, 255, 0.12), transparent 45%),
    linear-gradient(18deg, rgba(0, 255, 255, 0.08), transparent 40%),
    var(--surface);
  border-top: 1px solid var(--border);
}

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

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

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

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

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

.footer-nz-disclosure {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
}

.footer-nz-disclosure p {
  margin-bottom: 10px;
}

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

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

.age-gate__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 0 48px rgba(255, 0, 255, 0.25);
}

.age-gate__panel h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.age-gate__panel p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background-position 0.45s ease, box-shadow 0.35s ease, transform 0.25s ease;
}

.btn-primary {
  color: #080015;
  background: linear-gradient(120deg, var(--primary), var(--secondary), var(--accent));
  background-size: 200% 200%;
  box-shadow: 0 8px 24px rgba(255, 0, 255, 0.35);
}

.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 10px 28px rgba(0, 255, 255, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  box-shadow: 0 -8px 32px rgba(255, 0, 255, 0.15);
}

.cookie-banner.is-hidden {
  display: none;
}

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

.cookie-banner p {
  flex: 1 1 260px;
  font-size: 13px;
  color: var(--muted);
}

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

.page-hero {
  padding: 40px 24px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(100deg, var(--text), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero p {
  color: var(--muted);
  max-width: 640px;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 24px 64px;
}

.legal-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--secondary);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 10px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.contact-form {
  margin-top: 28px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 520px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
}

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

.form-error {
  display: none;
  color: var(--accent);
  font-size: 12px;
  margin: -8px 0 12px;
}

.form-error.is-visible {
  display: block;
}

.contact-success {
  display: none;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  max-width: 520px;
  margin-top: 28px;
}

.contact-success.is-visible {
  display: block;
}

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

.go-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.go-panel {
  text-align: center;
  max-width: 440px;
  padding: 40px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.2);
}

.go-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.go-panel h1 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.go-panel p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

#AD {
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}

.error-page {
  text-align: center;
  padding: 80px 24px;
}

.error-page h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
}

.decor-img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 480px) {
  .decor-img {
    max-width: 100%;
    max-height: 220px;
  }

  .decor-wrap,
  .bonus-visual,
  .start-hero-img,
  .pay-mosaic .decor-wrap {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .bonus-visual {
    min-height: 160px;
    background-size: cover;
    background-position: center;
  }
}

.neo-mesh {
  position: relative;
}

.neo-mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.18), transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.14), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 0, 0.06), transparent 50%);
  opacity: 0.85;
}

.vibrant-gradient-fill {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.colorful-neo-shadow {
  box-shadow: 0 12px 36px rgba(255, 0, 255, 0.28), 0 0 24px rgba(0, 255, 255, 0.12);
}

.modern-mesh-gradient {
  background-image:
    linear-gradient(125deg, rgba(255, 0, 255, 0.15), transparent 40%),
    linear-gradient(305deg, rgba(0, 255, 255, 0.12), transparent 45%);
}
