:root {
  --bg: #1a0a2e;
  --violet: #2a1050;
  --lilac: #c77dff;
  --lime: #c8ff00;
  --ink: #f4f0ff;
  --fog: rgba(199, 125, 255, 0.14);
  --line: rgba(199, 125, 255, 0.28);
  --deep: #0e041c;
  --mute: rgba(244, 240, 255, 0.68);
  --header-h: 76px;
  --glow-lilac: 0 0 18px rgba(199, 125, 255, 0.55), 0 0 42px rgba(199, 125, 255, 0.22);
  --glow-lime: 0 0 16px rgba(200, 255, 0, 0.45), 0 0 36px rgba(200, 255, 0, 0.18);
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 12% -8%, rgba(199, 125, 255, 0.22), transparent 55%),
    radial-gradient(700px 380px at 92% 8%, rgba(200, 255, 0, 0.08), transparent 50%),
    radial-gradient(500px 280px at 50% 100%, rgba(42, 16, 80, 0.9), transparent 60%),
    var(--bg);
}

body.is-locked {
  overflow: hidden;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 140;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(8, 2, 18, 0.22) 2px 3px
  );
  opacity: 0.38;
  mix-blend-mode: multiply;
}

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

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

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

h1, h2, h3, h4 {
  font-family: Orbitron, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 0.5em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}

.skip:focus {
  left: 12px;
  z-index: 200;
  background: var(--lime);
  color: var(--deep);
  padding: 8px 14px;
  border-radius: 8px;
}

.club-ticker {
  overflow: hidden;
  white-space: nowrap;
  background: var(--deep);
  border-bottom: 1px solid var(--line);
  color: var(--lilac);
  font-family: Orbitron, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
}

.club-ticker span {
  display: inline-block;
  padding: 8px 0;
  animation: crawl 32s linear infinite;
}

@keyframes crawl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(26, 10, 46, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 40px rgba(8, 2, 18, 0.45), 0 1px 0 rgba(200, 255, 0, 0.18);
}

.header-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: Orbitron, sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.16em;
  flex-shrink: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 8px rgba(199, 125, 255, 0.7));
}

.brand:hover {
  color: var(--lime);
}

.site-nav {
  display: flex;
  gap: 4px 18px;
  margin-left: auto;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--mute);
  font-family: Orbitron, sans-serif;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--lime);
  border-bottom-color: var(--lime);
  text-shadow: 0 0 12px rgba(200, 255, 0, 0.45);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

#guest-actions,
#player-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

#guest-actions[hidden],
#player-actions[hidden] {
  display: none !important;
}

#player-name {
  font-family: Orbitron, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--lime);
  text-shadow: 0 0 10px rgba(200, 255, 0, 0.5);
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  margin-left: auto;
  background: var(--violet);
  border: 1px solid var(--lilac);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  box-shadow: var(--glow-lilac);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--lime);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--lime);
  background: var(--lime);
  color: var(--deep);
  font-family: Orbitron, sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  padding: 11px 16px;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: var(--glow-lime);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.btn:hover {
  color: var(--deep);
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(200, 255, 0, 0.7);
}

.btn:active {
  transform: translateY(1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--lilac);
  box-shadow: var(--glow-lilac);
}

.btn-ghost:hover {
  color: var(--lime);
  border-color: var(--lime);
}

.btn-violet {
  background: var(--violet);
  color: var(--ink);
  border-color: var(--lilac);
  box-shadow: var(--glow-lilac);
}

.btn-sm {
  padding: 8px 12px;
  font-size: 0.66rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: min(88vh, 840px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 40%, rgba(200, 255, 0, 0.05) 41%, transparent 42%),
    linear-gradient(125deg, transparent 62%, rgba(199, 125, 255, 0.08) 63%, transparent 64%);
  mix-blend-mode: screen;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 64px 48px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(199, 125, 255, 0.12);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-kicker span {
  font-family: Orbitron, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--lime);
  border: 1px solid rgba(200, 255, 0, 0.4);
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(200, 255, 0, 0.18);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  max-width: 14ch;
  margin-bottom: 16px;
  text-shadow: 0 0 24px rgba(199, 125, 255, 0.45);
}

.hero-lead {
  max-width: 42ch;
  color: var(--mute);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--deep);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  filter: saturate(1.15) contrast(1.05);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 10, 46, 0.55), transparent 45%),
    radial-gradient(circle at 70% 40%, rgba(199, 125, 255, 0.25), transparent 50%);
  pointer-events: none;
}

.neon-frame {
  position: relative;
}

.neon-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(199, 125, 255, 0.35);
  border-radius: 8px;
  pointer-events: none;
  box-shadow: inset 0 0 24px rgba(199, 125, 255, 0.12);
}

.section {
  padding: 80px 0;
}

.section-head {
  margin-bottom: 36px;
  max-width: 62ch;
}

.kicker {
  display: inline-block;
  font-family: Orbitron, sans-serif;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: var(--lilac);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
}

.section-head p {
  color: var(--mute);
  margin: 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vinyl-sleeve {
  position: relative;
  display: grid;
  grid-template-columns: 14px 1fr;
  background: var(--violet);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(199, 125, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(200, 255, 0, 0.08), var(--glow-lilac);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.vinyl-sleeve:hover {
  transform: translateY(-6px);
  animation: pulse-glow 1.4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(200, 255, 0, 0.55), 0 0 22px rgba(200, 255, 0, 0.28), 0 0 40px rgba(199, 125, 255, 0.35);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(199, 125, 255, 0.7), 0 0 28px rgba(199, 125, 255, 0.4), 0 0 48px rgba(200, 255, 0, 0.22);
  }
}

.sleeve-spine {
  background: linear-gradient(180deg, var(--lime), #8ab000 40%, var(--lilac));
  box-shadow: inset -2px 0 0 rgba(14, 4, 28, 0.35);
}

.sleeve-face {
  padding: 14px 14px 18px;
}

.sleeve-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
  border: 1px solid rgba(199, 125, 255, 0.35);
}

.sleeve-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vinyl-hole {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  right: 10px;
  bottom: 10px;
  background:
    radial-gradient(circle at 50% 50%, transparent 28%, rgba(26, 10, 46, 0.55) 30% 70%, rgba(200, 255, 0, 0.7) 72% 78%, transparent 80%);
  border: 1px solid rgba(200, 255, 0, 0.4);
  pointer-events: none;
}

.vinyl-sleeve h3 {
  font-size: 1.05rem;
  margin: 14px 0 6px;
}

.vinyl-sleeve p {
  color: var(--mute);
  font-size: 0.94rem;
  min-height: 4.4em;
}

.vinyl-sleeve .btn {
  width: 100%;
}

.feature-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.feature-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--lilac);
  box-shadow: var(--glow-lilac);
}

.feature-visual img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.feature-visual::after {
  content: "KESKIYÖ";
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: Orbitron, sans-serif;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: var(--deep);
  background: var(--lime);
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: var(--glow-lime);
}

.feature-copy h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
}

.feature-copy p {
  color: var(--mute);
}

.eq-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: end;
}

.eq-col {
  background: linear-gradient(180deg, rgba(42, 16, 80, 0.7), rgba(14, 4, 28, 0.85));
  border: 1px solid var(--line);
  border-radius: 16px 16px 8px 8px;
  padding: 22px 20px 24px;
  position: relative;
  overflow: hidden;
}

.eq-col::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lilac), var(--lime));
  box-shadow: 0 0 16px rgba(200, 255, 0, 0.45);
}

.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 72px;
  margin-bottom: 16px;
}

.eq-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--lime), var(--lilac));
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  animation: eq 1.2s ease-in-out infinite;
}

.eq-bars span:nth-child(1) { height: 38%; animation-delay: 0s; }
.eq-bars span:nth-child(2) { height: 72%; animation-delay: 0.12s; }
.eq-bars span:nth-child(3) { height: 48%; animation-delay: 0.24s; }
.eq-bars span:nth-child(4) { height: 90%; animation-delay: 0.08s; }
.eq-bars span:nth-child(5) { height: 56%; animation-delay: 0.32s; }
.eq-bars span:nth-child(6) { height: 34%; animation-delay: 0.18s; }

@keyframes eq {
  0%, 100% { transform: scaleY(0.55); }
  50% { transform: scaleY(1); }
}

.eq-n {
  display: block;
  font-family: Orbitron, sans-serif;
  color: var(--lime);
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.eq-col h3 {
  font-size: 1.05rem;
}

.eq-col p {
  color: var(--mute);
  margin: 0;
  font-size: 0.95rem;
}

.locker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.locker {
  background: linear-gradient(180deg, #351864, var(--violet));
  border: 1px solid rgba(199, 125, 255, 0.4);
  border-radius: 10px;
  padding: 22px 16px 20px;
  position: relative;
  min-height: 220px;
  box-shadow: inset 0 0 0 1px rgba(14, 4, 28, 0.35), 0 10px 24px rgba(8, 2, 18, 0.35);
}

.locker::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  box-shadow: 0 0 10px rgba(200, 255, 0, 0.6);
  transform: translateY(-50%);
}

.locker-num {
  font-family: Orbitron, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--lilac);
}

.locker-vent {
  display: grid;
  gap: 4px;
  margin: 12px 0 16px;
  width: 42%;
}

.locker-vent i {
  display: block;
  height: 3px;
  background: rgba(244, 240, 255, 0.12);
  border-radius: 2px;
}

.locker h3 {
  font-size: 0.95rem;
  max-width: 12ch;
}

.locker p {
  color: var(--mute);
  font-size: 0.9rem;
  margin: 0;
  padding-right: 12px;
}

.cta-laser {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--lilac);
  box-shadow: var(--glow-lilac), var(--glow-lime);
}

.cta-laser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  position: absolute;
  inset: 0;
}

.cta-fog {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 10, 46, 0.88) 0%, rgba(42, 16, 80, 0.55) 48%, rgba(26, 10, 46, 0.28) 100%),
    linear-gradient(70deg, transparent 38%, rgba(200, 255, 0, 0.18) 39%, transparent 41%),
    linear-gradient(78deg, transparent 58%, rgba(199, 125, 255, 0.28) 59%, transparent 62%);
}

.cta-copy {
  position: relative;
  z-index: 1;
  padding: 52px 44px;
  max-width: 36rem;
}

.cta-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  text-shadow: 0 0 22px rgba(199, 125, 255, 0.5);
}

.cta-copy p {
  color: var(--mute);
}

.page-head {
  padding: 64px 0 36px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(200, 255, 0, 0.05), transparent 40%),
    radial-gradient(600px 180px at 80% 0%, rgba(199, 125, 255, 0.18), transparent 60%);
}

.page-head h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  max-width: 16ch;
}

.page-head p {
  max-width: 54ch;
  color: var(--mute);
  margin: 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 48px 0 88px;
}

.side-card {
  position: sticky;
  top: 100px;
  align-self: start;
  background: var(--violet);
  border: 1px solid var(--lilac);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--glow-lilac);
}

.side-card strong {
  display: block;
  font-family: Orbitron, sans-serif;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 8px;
  color: var(--lime);
}

.side-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--mute);
}

.prose h2 {
  font-size: 1.25rem;
  margin-top: 1.5em;
  padding-left: 12px;
  border-left: 3px solid var(--lime);
}

.prose p,
.prose li {
  color: var(--mute);
}

.prose ul {
  padding-left: 1.15em;
  list-style: disc;
  margin: 0 0 1em;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 42px 0 88px;
}

.note-card,
.form-card {
  background: var(--violet);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--glow-lilac);
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-family: Orbitron, sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  margin-bottom: 6px;
  color: var(--lilac);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--lilac);
  background: var(--deep);
  color: var(--ink);
  padding: 11px 12px;
  font-size: 1rem;
  border-radius: 10px;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--lime);
  border-color: var(--lime);
}

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

.form-thanks {
  display: none;
}

.form-card.is-sent form {
  display: none;
}

.form-card.is-sent .form-thanks {
  display: block;
}

.site-footer {
  background: var(--deep);
  border-top: 1px solid var(--lilac);
  padding: 48px 0 28px;
  box-shadow: 0 -12px 40px rgba(199, 125, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 0.9fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Orbitron, sans-serif;
  letter-spacing: 0.14em;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

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

.site-footer p,
.site-footer a {
  color: var(--mute);
}

.site-footer h4 {
  font-size: 0.78rem;
  color: var(--lime);
}

.site-footer a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  font-size: 0.88rem;
  color: var(--mute);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 2, 18, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 160;
}

.overlay.is-open {
  display: flex;
}

.modal {
  width: min(460px, 100%);
  background: var(--violet);
  color: var(--ink);
  border: 1px solid var(--lilac);
  border-radius: 16px;
  box-shadow: var(--glow-lilac), var(--glow-lime);
  padding: 28px 26px 24px;
  position: relative;
}

.modal .fine {
  color: var(--mute);
  font-size: 0.9rem;
}

.modal-x {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}

.age-mark {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 10px rgba(199, 125, 255, 0.7));
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 12px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 12px 0 16px;
  border: 1px solid var(--lilac);
  border-radius: 10px;
  overflow: hidden;
}

.auth-tab {
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  font-family: Orbitron, sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--ink);
  text-transform: uppercase;
}

.auth-tab.is-on {
  background: var(--lime);
  color: var(--deep);
}

.auth-error {
  min-height: 1.2em;
  color: var(--lime);
  margin: 0 0 8px;
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 155;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--violet);
  color: var(--ink);
  border: 1px solid var(--lime);
  border-radius: 14px;
  box-shadow: var(--glow-lime);
  padding: 14px 16px;
}

.cookie-bar.is-open {
  display: flex;
}

.cookie-bar p {
  margin: 0;
}

.cookie-bar a {
  color: var(--lime);
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero,
  .feature-split,
  .games-grid,
  .eq-row,
  .locker-grid,
  .legal-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 48px 22px 40px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 10, 46, 0.98);
    border: 1px solid var(--lilac);
    flex-direction: column;
    padding: 12px 16px 18px;
    margin: 0;
    z-index: 90;
    border-radius: 0 0 12px 12px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-row {
    flex-wrap: wrap;
  }

  .locker-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .games-grid,
  .eq-row,
  .locker-grid,
  .cookie-bar,
  .modal-actions,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero h1 {
    max-width: none;
  }

  .cookie-bar {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .cta-copy {
    padding: 36px 22px;
  }
}
