:root {
  --bg: #031820;
  --surface: #0A2A35;
  --surface-2: #123848;
  --accent: #F0A202;
  --secondary: #8B7CFF;
  --text: #EAF6F8;
  --muted: #7A9AA3;
  --btn-text: #1A1200;
  --line: rgba(234, 246, 248, 0.12);
  --glow-accent: rgba(240, 162, 2, 0.35);
  --glow-secondary: rgba(139, 124, 255, 0.35);
  --radius: 4px 22px 4px 22px;
  --radius-sm: 4px 14px 4px 14px;
  --shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", sans-serif;
  --container: 1140px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(900px 480px at 8% -8%, rgba(139, 124, 255, 0.18), transparent 55%),
    radial-gradient(760px 420px at 92% 0%, rgba(240, 162, 2, 0.12), transparent 50%),
    linear-gradient(165deg, #052430 0%, var(--bg) 42%, #021016 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #ffc44d;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.55em;
  letter-spacing: -0.02em;
  font-weight: 650;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5.2rem 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.6rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 14px;
  height: 14px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: var(--secondary);
  box-shadow: 0 0 14px var(--glow-secondary);
  animation: diamondSpin 8s linear infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.72rem 1.3rem;
  border-radius: 3px 16px 3px 16px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #d98900);
  color: var(--btn-text);
  box-shadow: 0 0 0 1px rgba(240, 162, 2, 0.28), 0 12px 28px var(--glow-accent);
}

.btn-primary:hover {
  color: var(--btn-text);
  transform: translateY(-2px) skewX(-2deg);
  box-shadow: 0 0 0 1px rgba(240, 162, 2, 0.45), 0 16px 34px var(--glow-accent);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(139, 124, 255, 0.55);
  box-shadow: inset 0 0 0 1px rgba(139, 124, 255, 0.12);
}

.btn-secondary:hover {
  color: var(--text);
  border-color: var(--secondary);
  background: rgba(139, 124, 255, 0.12);
  box-shadow: 0 0 22px rgba(139, 124, 255, 0.25);
}

.btn-ghost {
  background: rgba(234, 246, 248, 0.04);
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: rgba(240, 162, 2, 0.4);
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(3, 24, 32, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

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

.brand img {
  width: 38px;
  height: 38px;
  transform: rotate(-4deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-actions [data-auth-guest],
.header-actions [data-auth-user] {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.header-actions [hidden] {
  display: none !important;
}

.player-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 3px 14px 3px 14px;
  background: rgba(139, 124, 255, 0.14);
  border: 1px solid rgba(139, 124, 255, 0.4);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
}

.player-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: var(--accent);
  box-shadow: 0 0 10px var(--glow-accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(10, 42, 53, 0.85);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* Hero — full-bleed visual plane */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: flex-end;
  padding: 0 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(3, 24, 32, 0.94) 0%, rgba(3, 24, 32, 0.7) 48%, rgba(3, 24, 32, 0.42) 100%),
    url("../images/hero.webp") center/cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 42%;
  height: 70%;
  right: -8%;
  bottom: -20%;
  background: radial-gradient(circle, rgba(139, 124, 255, 0.28), transparent 65%);
  pointer-events: none;
  animation: pulseGlow 7s ease-in-out infinite;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.4rem;
  align-items: end;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.95;
  margin: 0 0 0.35em;
  color: var(--text);
  letter-spacing: -0.04em;
}

.hero-brand span {
  display: inline-block;
  background: linear-gradient(120deg, var(--accent), #ffd27a 45%, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: skewX(-4deg);
}

.hero h1 {
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  max-width: 22ch;
  font-weight: 550;
  color: var(--text);
  margin-bottom: 0.9rem;
}

.hero-lead {
  max-width: 46ch;
  font-size: 1.08rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.stat {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-sm);
  background: rgba(10, 42, 53, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transform: skewX(-3deg);
}

.stat strong,
.stat span {
  display: block;
  transform: skewX(3deg);
}

.stat strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-panel {
  border-radius: 6px 28px 6px 28px;
  padding: 1.45rem;
  background:
    linear-gradient(155deg, rgba(139, 124, 255, 0.2), rgba(10, 42, 53, 0.72)),
    rgba(10, 42, 53, 0.7);
  border: 1px solid rgba(240, 162, 2, 0.35);
  box-shadow: var(--shadow), 0 0 40px rgba(240, 162, 2, 0.08);
  animation: floatPanel 7.5s ease-in-out infinite;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
}

.hero-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hero-panel p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.panel-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.92rem;
}

.panel-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-top: 0.35rem;
  flex: 0 0 auto;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: var(--accent);
  box-shadow: 0 0 10px var(--glow-accent);
}

/* Games — asymmetric mosaic */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.15rem;
}

.game-card {
  position: relative;
  grid-column: span 2;
  border-radius: 6px 24px 6px 24px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.game-card:nth-child(1),
.game-card:nth-child(2) {
  grid-column: span 3;
}

.game-card:hover {
  transform: translateY(-7px) rotate(-0.4deg);
  border-color: rgba(240, 162, 2, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 28px rgba(139, 124, 255, 0.16);
}

.game-card-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}

.game-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(3, 24, 32, 0.75));
  pointer-events: none;
}

.game-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-card:hover .game-card-media img {
  transform: scale(1.06) rotate(0.6deg);
}

.game-card-body {
  padding: 1.2rem 1.25rem 1.4rem;
}

.game-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.game-card p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
  min-height: 3.2em;
}

/* Feature */
.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
}

.feature-visual {
  border-radius: 8px 36px 8px 36px;
  overflow: hidden;
  border: 1px solid rgba(240, 162, 2, 0.3);
  box-shadow: 0 0 0 1px rgba(139, 124, 255, 0.1), var(--shadow);
  position: relative;
  min-height: 360px;
  background:
    linear-gradient(145deg, rgba(10, 42, 53, 0.15), rgba(3, 24, 32, 0.55)),
    url("../images/feature.webp") center/cover no-repeat;
  transform: rotate(-1.2deg);
}

.feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(3, 24, 32, 0.72));
  pointer-events: none;
}

.check-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(10, 42, 53, 0.78);
  border: 1px solid var(--line);
}

.check-list .mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(240, 162, 2, 0.14);
  color: var(--accent);
  font-weight: 800;
  box-shadow: 0 0 16px rgba(240, 162, 2, 0.14);
}

.check-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.check-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 1.55rem 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 56, 72, 0.92), rgba(10, 42, 53, 0.92));
  border: 1px solid var(--line);
  overflow: hidden;
}

.step-card:nth-child(2) {
  transform: translateY(18px);
}

.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(240, 162, 2, 0.22);
  line-height: 1;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.benefit {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
}

.benefit:nth-child(even) {
  margin-top: 1rem;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(139, 124, 255, 0.28), rgba(240, 162, 2, 0.14));
  border: 1px solid rgba(139, 124, 255, 0.35);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
}

.benefit h3 {
  font-size: 1.15rem;
}

/* CTA */
.cta-banner {
  position: relative;
  border-radius: 10px 40px 10px 40px;
  overflow: hidden;
  padding: 3.1rem 2.6rem;
  border: 1px solid rgba(240, 162, 2, 0.3);
  background:
    linear-gradient(115deg, rgba(3, 24, 32, 0.9) 8%, rgba(10, 42, 53, 0.72) 55%, rgba(139, 124, 255, 0.32) 100%),
    url("../images/cta.webp") center/cover no-repeat;
  box-shadow: 0 0 50px rgba(139, 124, 255, 0.16);
}

.cta-banner h2 {
  max-width: 16ch;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
}

.cta-banner p {
  max-width: 48ch;
  color: #c5dde3;
  margin-bottom: 1.4rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
  background: rgba(2, 14, 20, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  margin-top: 0.9rem;
  max-width: 34ch;
  font-size: 0.92rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 0.9rem;
}

.footer-col a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}

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

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 3px 12px 3px 12px;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}

.legal-note {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Inner pages */
.page-hero {
  padding: 3.6rem 0 2rem;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(240, 162, 2, 0.16), transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
}

.content-card {
  background: rgba(10, 42, 53, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1.2rem;
}

.content-card h2 {
  font-size: 1.35rem;
}

.content-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.content-card li + li {
  margin-top: 0.45rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  border-radius: 4px 12px 4px 12px;
  border: 1px solid var(--line);
  background: rgba(3, 24, 32, 0.7);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: rgba(240, 162, 2, 0.55);
  box-shadow: 0 0 0 3px rgba(240, 162, 2, 0.12);
}

.form-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* Modals / overlays */
.age-gate,
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 12, 16, 0.8);
  backdrop-filter: blur(8px);
}

.age-gate.is-open,
.modal.is-open {
  display: grid;
}

.modal-card {
  width: min(100%, 450px);
  background: linear-gradient(180deg, #123848, var(--surface));
  border: 1px solid rgba(240, 162, 2, 0.35);
  border-radius: 8px 28px 8px 28px;
  padding: 1.65rem;
  box-shadow: var(--shadow), 0 0 40px rgba(139, 124, 255, 0.16);
  position: relative;
  animation: modalIn 0.35s ease;
}

.modal-card h2 {
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.modal-card > p {
  margin-bottom: 1.2rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding: 0.3rem;
  border-radius: 8px;
  background: rgba(3, 24, 32, 0.55);
  margin-bottom: 1.2rem;
}

.auth-tabs button {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-height: 40px;
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.auth-tabs button.is-active {
  background: rgba(240, 162, 2, 0.16);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(240, 162, 2, 0.3);
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
}

.modal-close:hover {
  color: var(--text);
  border-color: rgba(240, 162, 2, 0.35);
}

#cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 250;
  width: min(100%, 740px);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-radius: 8px 22px 8px 22px;
  background: rgba(10, 42, 53, 0.96);
  border: 1px solid rgba(240, 162, 2, 0.3);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

#cookie-banner[hidden] {
  display: none !important;
}

#cookie-banner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.9rem;
  color: #c5dde3;
}

#cookie-banner a {
  color: var(--accent);
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-14px); }
}

@keyframes floatPanel {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.4deg); }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) skewX(-2deg) scale(0.98); }
  to { opacity: 1; transform: translateY(0) skewX(0) scale(1); }
}

@keyframes diamondSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 3.5rem 0 3rem;
    align-items: center;
  }

  .hero-grid,
  .feature-split,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-card,
  .game-card:nth-child(1),
  .game-card:nth-child(2) {
    grid-column: span 1;
  }

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

  .step-card:nth-child(2),
  .benefit:nth-child(even),
  .feature-visual {
    transform: none;
  }

  .hero-panel {
    order: -1;
    clip-path: none;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(3, 24, 32, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0.6rem;
    border-bottom: 1px solid var(--line);
  }

  .header-actions .btn {
    padding-inline: 0.85rem;
  }

  .hero-stats,
  .games-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 2rem 1.3rem;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero::after,
  .hero-panel,
  .modal-card,
  .eyebrow::before {
    animation: none;
  }
}
