:root {
  --bg: #0D0A00;
  --surface: #1A1500;
  --text: #FFCC00;
  --muted: #B38F00;
  --primary: #FFB300;
  --secondary: #332600;
  --accent: #FFD966;
  --border: rgba(255,204,0,0.2);
  --max-w: 1200px;
  --font-sans: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-cursive: "Segoe Script", "Apple Chancery", "Bradley Hand", cursive;
  --kw-80s: "80s";
  --kw-glitch: "glitch";
  --kw-neon: "neon";
  --kw-retro-future: "retro-future";
  --kw-aesthetic: "aesthetic";
  --kw-scanlines: "scanlines";
  --kw-chromatic: "chromatic aberration";
  --kw-pastel: "pastel purple and teal gradients";
  --kw-wireframe: "glowing 3D wireframe floors";
  --kw-vhs: "VHS tracking distortion effects";
  --kw-static: "static noise textures";
  --vhs-purple: #c9a0ff;
  --vhs-teal: #7ef0d8;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 700;
  background-color: var(--bg);
  background-image:
    linear-gradient(160deg, var(--bg) 0%, var(--surface) 45%, var(--bg) 100%),
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(201, 160, 255, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 80%, rgba(126, 240, 216, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.18) 2px,
      rgba(0, 0, 0, 0.18) 3px
    );
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: var(--kw-80s) " " var(--kw-glitch) " " var(--kw-neon) " " var(--kw-retro-future) " " var(--kw-aesthetic) " " var(--kw-scanlines) " " var(--kw-chromatic) " " var(--kw-pastel) " " var(--kw-wireframe) " " var(--kw-vhs) " " var(--kw-static);
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  background-image:
    repeating-linear-gradient(
      180deg,
      rgba(255, 204, 0, 0.03) 0px,
      rgba(255, 204, 0, 0.03) 1px,
      transparent 1px,
      transparent 3px
    ),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: soft-light;
  animation: vhs-track 7s steps(2) infinite;
}

@keyframes vhs-track {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(1px);
  }
}

@keyframes glitch-shift {
  0%,
  90%,
  100% {
    text-shadow: 2px 0 rgba(126, 240, 216, 0.55), -2px 0 rgba(201, 160, 255, 0.55);
  }
  92% {
    text-shadow: -3px 0 rgba(126, 240, 216, 0.8), 3px 0 rgba(201, 160, 255, 0.7);
  }
  94% {
    text-shadow: 4px 0 rgba(201, 160, 255, 0.6), -1px 0 rgba(126, 240, 216, 0.5);
  }
}

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

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

img:not(.offer-logo) {
  max-width: 100%;
  height: auto;
}

.disclosure-banner {
  max-width: 900px;
  margin: 8px auto;
  padding: 10px 20px;
  background: rgba(255, 204, 0, 0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.nav-band-top {
  height: 50px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-band-bottom {
  height: 36px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.04em;
  animation: glitch-shift 4s infinite;
}

.brand-lockup img {
  width: 40px;
  height: 38px;
  object-fit: contain;
}

.brand-lockup .brand-script {
  font-family: var(--font-cursive);
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 34px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

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

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 200;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.45);
}

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

.nav-drawer a {
  color: var(--text);
  font-size: 0.95rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-drawer-close {
  align-self: flex-end;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-style: normal;
  margin-bottom: 0.5rem;
}

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

.wireframe-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(126, 240, 216, 0.12), transparent),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 38px,
      rgba(255, 204, 0, 0.18) 38px,
      rgba(255, 204, 0, 0.18) 39px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(201, 160, 255, 0.16) 28px,
      rgba(201, 160, 255, 0.16) 29px
    );
  transform: perspective(420px) rotateX(62deg);
  transform-origin: bottom center;
  opacity: 0.55;
  filter: drop-shadow(0 0 12px rgba(255, 179, 0, 0.25));
}

.hero {
  position: relative;
  background: var(--bg);
  padding: 3.5rem 1rem 4.5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(201, 160, 255, 0.08), transparent 40%, rgba(126, 240, 216, 0.08)),
    radial-gradient(circle at 70% 40%, rgba(255, 179, 0, 0.12), transparent 45%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 800;
  color: var(--text);
  margin-left: -1.5rem;
  padding-left: 0;
  max-width: 16ch;
  line-height: 1.1;
  animation: glitch-shift 5s infinite;
}

.hero-sub {
  margin-top: 1.25rem;
  margin-left: 3.5rem;
  max-width: 36ch;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
}

.hero-cta {
  margin-top: 1.75rem;
  margin-left: 3.5rem;
}

.hero-cta a {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  background: var(--primary);
  color: var(--bg);
  font-style: normal;
  font-weight: 800;
  border-radius: 6px;
  box-shadow: 0 0 18px rgba(255, 179, 0, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

.offers-section {
  position: relative;
  padding: 3rem 1rem;
  background-color: var(--surface);
  background-image:
    linear-gradient(180deg, rgba(13, 10, 0, 0.72), rgba(26, 21, 0, 0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

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

.offers-section h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.offers-lead {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.info-section {
  position: relative;
  padding: 3rem 1rem;
  overflow: hidden;
}

.info-section:nth-child(even) {
  background: rgba(26, 21, 0, 0.65);
}

.info-section:nth-child(odd) {
  background: transparent;
}

.info-section::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 240, 216, 0.12), transparent 70%);
  top: -40px;
  right: -40px;
  pointer-events: none;
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.info-section h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  margin-bottom: 1rem;
  color: var(--accent);
  font-style: italic;
}

.info-section p {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0.9rem;
  max-width: 70ch;
}

.info-section ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
}

.info-section li {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  padding-left: 1rem;
  border-left: 2px solid var(--primary);
}

.info-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  box-shadow: 0 0 12px rgba(255, 179, 0, 0.25);
}

.info-cta:hover {
  background: rgba(255, 179, 0, 0.12);
  color: var(--accent);
}

.decor-img {
  display: block;
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: 0 0 20px rgba(255, 179, 0, 0.2), 4px 0 0 rgba(126, 240, 216, 0.35), -4px 0 0 rgba(201, 160, 255, 0.35);
}

.decor-wrap {
  max-width: 100%;
  overflow: hidden;
  margin: 1rem 0;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2.5rem 1rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 800;
  font-style: italic;
}

.footer-brand img {
  width: 32px;
  height: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.footer-links a {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-compliance {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.footer-badges img {
  display: block;
  max-height: 36px;
  width: auto;
}

.updated-date {
  color: var(--accent);
  font-size: 0.8rem;
}

.footer-company {
  font-size: 0.8rem;
  color: var(--muted);
}

#age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 10, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  padding: 1rem;
}

#age-overlay.active {
  display: flex;
}

.age-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 179, 0, 0.25);
}

.age-modal h2 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.age-modal p {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.age-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.age-confirm,
.age-decline,
#cookie-accept,
#cookie-reject {
  border: 1px solid var(--border);
  padding: 0.65rem 1.1rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  border-radius: 6px;
}

.age-confirm,
#cookie-accept {
  background: var(--primary);
  color: var(--bg);
}

.age-decline,
#cookie-reject {
  background: transparent;
  color: var(--muted);
}

#age-blocked {
  display: none;
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

#age-blocked.visible {
  display: block;
}

#cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  width: min(640px, calc(100% - 2rem));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  z-index: 4000;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

#cookie-banner.active {
  transform: translateX(-50%) translateY(0);
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cookie-inner p {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.go-page {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  gap: 1rem;
}

.go-ad {
  color: var(--accent);
  font-style: normal;
  letter-spacing: 0.12em;
}

.go-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.go-compliance {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 36rem;
}

.page-hero {
  padding: 2.5rem 1rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}

.page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.prose p {
  font-style: normal;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.prose h2 {
  color: var(--accent);
  margin: 1.75rem 0 0.75rem;
  font-style: italic;
}

.prose h3 {
  color: var(--primary);
  margin: 1.25rem 0 0.5rem;
  font-style: italic;
}

.prose ul {
  margin: 0.75rem 0 1.25rem 1.1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
  margin-top: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-style: normal;
  color: var(--accent);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.7rem 0.85rem;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
}

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

.contact-form button {
  align-self: flex-start;
  background: var(--primary);
  color: var(--bg);
  border: none;
  padding: 0.75rem 1.35rem;
  border-radius: 6px;
  font-weight: 800;
  font-style: normal;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-error {
  display: none;
  color: #ff8a80;
  font-size: 0.8rem;
  font-style: normal;
  margin-top: 0.35rem;
}

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

.contact-success {
  display: none;
  padding: 1.25rem;
  border: 1px solid var(--border);
  background: rgba(255, 179, 0, 0.08);
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
  margin-top: 1rem;
}

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

.not-found {
  text-align: center;
  padding: 4rem 1rem;
}

.not-found a {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.7rem 1.2rem;
  background: var(--primary);
  color: var(--bg);
  font-style: normal;
  font-weight: 800;
}

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

  .nav-band-top .nav-inner {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    margin-left: 0;
    text-align: center;
    max-width: none;
  }

  .hero-sub,
  .hero-cta {
    margin-left: 0;
    text-align: center;
    max-width: none;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
    width: 100%;
  }

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

  .intro-band,
  #info-4 .intro-band {
    max-width: 100%;
    width: 100%;
    height: 96px;
    background-size: cover;
    background-position: center;
  }

  .image-rail {
    max-width: 100%;
    overflow: hidden;
  }

  .wireframe-floor {
    transform: perspective(320px) rotateX(58deg);
    height: 100px;
  }
}
