/* ============================================
   ANDYWINS — NEO-BRUTALIST DESIGN SYSTEM
   Sharp corners. Thick borders. Hard shadows.
   ============================================ */

/* === DESIGN TOKENS === */
:root {
  --aw-primary: #E63946;
  --aw-primary-dark: #C1121F;
  --aw-primary-light: #FFB3B8;
  --aw-accent: #A7C957;
  --aw-accent-dark: #6A994E;
  --aw-bg: #FFFCF2;
  --aw-surface: #FFFFFF;
  --aw-text: #1A1A1A;
  --aw-text-muted: #555555;
  --aw-border: #1A1A1A;
  --aw-shadow: 4px 4px 0 #1A1A1A;
  --aw-shadow-lg: 6px 6px 0 #1A1A1A;
  --aw-font: 'Space Grotesk', Arial, sans-serif;
  --aw-max-width: 1100px;
  --aw-transition: 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --aw-radius-none: 0px;
  --aw-radius-sm: 2px;
  --aw-radius-md: 4px;
  --aw-sp-1: 6px;
  --aw-sp-2: 12px;
  --aw-sp-3: 20px;
  --aw-sp-4: 32px;
  --aw-sp-5: 44px;
  --aw-sp-6: 64px;
  --aw-sp-7: 88px;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--aw-font);
  background-color: var(--aw-bg);
  color: var(--aw-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--aw-primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color var(--aw-transition);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

/* === UTILITIES === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-highlight {
  color: var(--aw-primary);
  display: inline;
}

.site-wrapper {
  width: 100%;
  overflow-x: hidden;
}

.content-section {
  max-width: var(--aw-max-width);
  margin: 0 auto;
  padding: var(--aw-sp-6) var(--aw-sp-3);
}

.content-section__header {
  text-align: center;
  margin-bottom: var(--aw-sp-5);
}

.content-section__header h2 {
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.brutalist-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: var(--aw-sp-1) var(--aw-sp-2);
  border: 2px solid var(--aw-border);
  background: var(--aw-accent);
  color: var(--aw-text);
  margin-bottom: var(--aw-sp-2);
}

/* === SCROLL REVEAL === */
.reveal-on-scroll {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll--visible {
  opacity: 1;
  transform: translateX(0);
}

/* === BUTTONS === */
.brutalist-btn {
  display: inline-block;
  font-family: var(--aw-font);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--aw-sp-2) var(--aw-sp-4);
  border: 3px solid var(--aw-border);
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow var(--aw-transition), transform var(--aw-transition);
  box-shadow: var(--aw-shadow);
  position: relative;
  line-height: 1.4;
}

.brutalist-btn:hover {
  box-shadow: 2px 2px 0 #1A1A1A;
  text-decoration: none;
}

.brutalist-btn:active {
  box-shadow: 0 0 0 #1A1A1A;
}

.brutalist-btn--primary {
  background: var(--aw-primary);
  color: #FFFFFF;
}

.brutalist-btn--primary:hover {
  background: var(--aw-primary-dark);
  color: #FFFFFF;
}

.brutalist-btn--secondary {
  background: var(--aw-surface);
  color: var(--aw-text);
}

.brutalist-btn--secondary:hover {
  background: var(--aw-bg);
  color: var(--aw-text);
}

.brutalist-btn--outline {
  background: transparent;
  color: var(--aw-text);
}

.brutalist-btn--outline:hover {
  background: var(--aw-text);
  color: var(--aw-surface);
}

.brutalist-btn--highlight {
  background: var(--aw-accent);
  color: var(--aw-text);
}

.brutalist-btn--highlight:hover {
  background: var(--aw-accent-dark);
  color: #FFFFFF;
}

.brutalist-btn--lg {
  font-size: 1.15rem;
  padding: var(--aw-sp-3) var(--aw-sp-5);
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--aw-surface);
  border-bottom: 3px solid var(--aw-border);
  transition: transform 0.3s ease;
}

.site-header--hidden {
  transform: translateY(-100%);
}

.site-header__inner {
  max-width: var(--aw-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--aw-sp-2) var(--aw-sp-3);
}

.site-header__logo {
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--aw-text);
  display: flex;
  align-items: center;
  gap: var(--aw-sp-1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-header__logo:hover {
  color: var(--aw-primary);
}

.site-header__icon {
  font-size: 1.6rem;
}

.site-header__nav {
  display: none;
}

.site-header__toggle {
  width: 48px;
  height: 48px;
  background: var(--aw-text);
  border: 3px solid var(--aw-border);
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--aw-shadow);
  transition: box-shadow var(--aw-transition);
}

.site-header__toggle:hover {
  box-shadow: 2px 2px 0 #1A1A1A;
}

.site-header__toggle:active {
  box-shadow: 0 0 0 #1A1A1A;
}

/* Full-screen overlay nav */
.site-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--aw-primary);
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--aw-sp-4);
}

.site-header__overlay.active {
  display: flex;
}

.site-header__overlay a {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--aw-sp-2) var(--aw-sp-4);
  border-bottom: 4px solid transparent;
  transition: border-color var(--aw-transition);
}

.site-header__overlay a:hover,
.site-header__overlay a.active {
  border-bottom-color: #FFFFFF;
  color: #FFFFFF;
}

.site-header__overlay-close {
  position: absolute;
  top: var(--aw-sp-3);
  right: var(--aw-sp-3);
  width: 56px;
  height: 56px;
  background: transparent;
  border: 3px solid #FFFFFF;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === HERO === */
.hero-block {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--aw-primary);
  position: relative;
  padding: var(--aw-sp-7) var(--aw-sp-3);
  border-bottom: 4px solid var(--aw-border);
}

.hero-block__inner {
  max-width: var(--aw-max-width);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-block__text {
  color: #FFFFFF;
}

.hero-block__text h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: var(--aw-sp-3);
}

.hero-block__text p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto var(--aw-sp-4);
  opacity: 0.95;
  line-height: 1.5;
}

.hero-block__actions {
  display: flex;
  gap: var(--aw-sp-3);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-block__actions .brutalist-btn {
  border-color: #FFFFFF;
}

.hero-block__actions .brutalist-btn--primary {
  background: #FFFFFF;
  color: var(--aw-primary);
  border-color: #FFFFFF;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.hero-block__actions .brutalist-btn--primary:hover {
  box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.hero-block__actions .brutalist-btn--secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.hero-block__actions .brutalist-btn--secondary:hover {
  background: #FFFFFF;
  color: var(--aw-primary);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.hero-block__visual {
  display: none;
}

.hero-block__scroll {
  position: absolute;
  bottom: var(--aw-sp-4);
  left: 50%;
  transform: translateX(-50%);
  color: #FFFFFF;
  font-size: 2rem;
  animation: bounceArrow 1.5s infinite;
  cursor: pointer;
  text-decoration: none;
  opacity: 0.8;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

/* === STATS TICKER === */
.stats-ticker {
  background: var(--aw-text);
  color: #FFFFFF;
  border-top: 3px solid var(--aw-border);
  border-bottom: 3px solid var(--aw-border);
  overflow: hidden;
}

.stats-ticker__inner {
  max-width: var(--aw-max-width);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.stats-ticker__item {
  flex: 1;
  min-width: 140px;
  padding: var(--aw-sp-3) var(--aw-sp-4);
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-right: 2px solid #333;
}

.stats-ticker__item:last-child {
  border-right: none;
}

/* === ZIGZAG FEATURES === */
.zigzag-section {
  padding: var(--aw-sp-7) 0;
  border-top: 3px solid var(--aw-border);
}

.zigzag-grid {
  max-width: var(--aw-max-width);
  margin: 0 auto;
  padding: 0 var(--aw-sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--aw-sp-6);
}

.zigzag-grid__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--aw-sp-5);
  align-items: center;
}

.zigzag-grid__item:nth-child(even) {
  direction: rtl;
}

.zigzag-grid__item:nth-child(even) > * {
  direction: ltr;
}

.zigzag-grid__icon {
  width: 100%;
  min-height: 260px;
  background: var(--aw-surface);
  border: 3px solid var(--aw-border);
  box-shadow: var(--aw-shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.zigzag-grid__content h3 {
  text-transform: uppercase;
  margin-bottom: var(--aw-sp-2);
  font-size: 1.6rem;
}

.zigzag-grid__content p {
  color: var(--aw-text-muted);
  line-height: 1.7;
}

/* === TIMELINE / HOW IT WORKS === */
.timeline-section {
  padding: var(--aw-sp-7) 0;
  border-top: 3px solid var(--aw-border);
  background: var(--aw-surface);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  padding-top: calc(var(--aw-sp-7) + 40px);
  padding-bottom: calc(var(--aw-sp-7) + 40px);
}

.timeline-section__inner {
  max-width: var(--aw-max-width);
  margin: 0 auto;
  padding: 0 var(--aw-sp-3);
  position: relative;
}

.timeline-section__line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--aw-border);
}

.timeline-section__steps {
  display: flex;
  flex-direction: column;
  gap: var(--aw-sp-5);
  padding-left: var(--aw-sp-7);
}

.timeline-section__step {
  background: var(--aw-bg);
  border: 3px solid var(--aw-border);
  box-shadow: var(--aw-shadow);
  padding: var(--aw-sp-4);
  position: relative;
}

.timeline-section__marker {
  position: absolute;
  left: calc(-1 * var(--aw-sp-7) - 2px);
  top: var(--aw-sp-4);
  width: 48px;
  height: 48px;
  background: var(--aw-primary);
  border: 3px solid var(--aw-border);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.timeline-section__step h3 {
  text-transform: uppercase;
  margin-bottom: var(--aw-sp-1);
}

.timeline-section__step p {
  color: var(--aw-text-muted);
  line-height: 1.7;
}

/* === GAME ZONE === */
.game-zone {
  padding: var(--aw-sp-7) 0;
  border-top: 3px solid var(--aw-border);
  background: var(--aw-bg);
}

.game-zone__container {
  max-width: var(--aw-max-width);
  margin: 0 auto;
  padding: 0 var(--aw-sp-3);
}

.game-zone__card {
  background: var(--aw-surface);
  border: 3px solid var(--aw-border);
  box-shadow: var(--aw-shadow-lg);
  padding: var(--aw-sp-4);
}

.game-zone__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--aw-sp-2);
  margin-bottom: var(--aw-sp-4);
  padding-bottom: var(--aw-sp-3);
  border-bottom: 3px solid var(--aw-border);
}

.game-zone__stats {
  display: flex;
  gap: var(--aw-sp-4);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.game-zone__stats span {
  color: var(--aw-primary);
}

.game-zone__board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--aw-sp-2);
  max-width: 560px;
  margin: 0 auto var(--aw-sp-4);
}

.memory-card {
  aspect-ratio: 1;
  cursor: pointer;
  perspective: 600px;
  position: relative;
}

.memory-card__inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.memory-card.flipped .memory-card__inner {
  transform: rotateY(180deg);
}

.memory-card.matched .memory-card__inner {
  transform: rotateY(180deg);
}

.memory-card__front,
.memory-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--aw-border);
  font-size: 2.4rem;
  font-weight: 700;
}

.memory-card__front {
  background: var(--aw-text);
  color: #FFFFFF;
  transform: rotateY(0deg);
}

.memory-card__back {
  background: var(--aw-accent);
  transform: rotateY(180deg);
}

.memory-card.matched .memory-card__front {
  background: var(--aw-accent-dark);
}

.memory-card.matched .memory-card__back {
  background: var(--aw-accent);
  border-color: var(--aw-accent-dark);
}

.game-zone__info {
  margin-top: var(--aw-sp-4);
  padding-top: var(--aw-sp-3);
  border-top: 2px dashed var(--aw-border);
}

.game-zone__info h3 {
  text-transform: uppercase;
  margin-bottom: var(--aw-sp-2);
}

.game-zone__info p {
  color: var(--aw-text-muted);
  line-height: 1.7;
  margin-bottom: var(--aw-sp-2);
}

.game-zone__disclaimer {
  background: var(--aw-bg);
  border: 2px solid var(--aw-border);
  padding: var(--aw-sp-2) var(--aw-sp-3);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--aw-text-muted);
  margin-top: var(--aw-sp-3);
}

/* === FAQ === */
.faq-section {
  padding: var(--aw-sp-7) 0;
  border-top: 3px solid var(--aw-border);
}

.faq-stack {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.faq-stack__item {
  border: 3px solid var(--aw-border);
  margin-bottom: -3px;
}

.faq-stack__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--aw-sp-3) var(--aw-sp-4);
  background: var(--aw-surface);
  border: none;
  cursor: pointer;
  font-family: var(--aw-font);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--aw-text);
  transition: background var(--aw-transition);
}

.faq-stack__trigger:hover {
  background: var(--aw-bg);
}

.faq-stack__icon {
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: var(--aw-sp-3);
}

.faq-stack__item.open .faq-stack__icon {
  transform: rotate(45deg);
}

.faq-stack__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-stack__item.open .faq-stack__body {
  max-height: 400px;
}

.faq-stack__text {
  padding: var(--aw-sp-3) var(--aw-sp-4);
  border-top: 2px solid var(--aw-border);
  color: var(--aw-text-muted);
  line-height: 1.7;
}

/* === CTA STRIP === */
.cta-strip {
  background: var(--aw-primary);
  border-top: 3px solid var(--aw-border);
  border-bottom: 3px solid var(--aw-border);
  padding: var(--aw-sp-6) var(--aw-sp-3);
  text-align: center;
  color: #FFFFFF;
}

.cta-strip h2 {
  text-transform: uppercase;
  margin-bottom: var(--aw-sp-3);
  font-size: 2rem;
}

.cta-strip p {
  margin-bottom: var(--aw-sp-4);
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--aw-sp-4);
}

.cta-strip .brutalist-btn {
  border-color: #FFFFFF;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.cta-strip .brutalist-btn:hover {
  box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

/* === PROSE SECTION === */
.prose-section {
  padding: var(--aw-sp-7) 0;
  border-top: 3px solid var(--aw-border);
}

.prose-section__body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--aw-sp-3);
}

.prose-section__body h2,
.prose-section__body h3 {
  text-transform: uppercase;
  margin-top: var(--aw-sp-5);
  margin-bottom: var(--aw-sp-2);
}

.prose-section__body p {
  color: var(--aw-text-muted);
  line-height: 1.8;
  margin-bottom: var(--aw-sp-3);
}

.prose-section__body ul {
  margin-left: var(--aw-sp-4);
  margin-bottom: var(--aw-sp-3);
  color: var(--aw-text-muted);
  line-height: 1.8;
}

/* === FOOTER === */
.site-footer {
  background: var(--aw-text);
  color: #FFFFFF;
  border-top: 4px solid var(--aw-primary);
}

.site-footer__grid {
  max-width: var(--aw-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--aw-sp-5);
  padding: var(--aw-sp-6) var(--aw-sp-3);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--aw-sp-2);
}

.site-footer__brand-logo {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  text-decoration: none;
}

.site-footer__brand-logo:hover {
  color: var(--aw-primary-light);
}

.site-footer__brand p {
  font-size: 0.85rem;
  color: #AAAAAA;
  line-height: 1.6;
}

.site-footer__age {
  display: inline-block;
  background: var(--aw-primary);
  border: 2px solid #FFFFFF;
  padding: var(--aw-sp-1) var(--aw-sp-2);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--aw-sp-2);
}

.site-footer__col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--aw-sp-3);
  color: var(--aw-primary-light);
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--aw-sp-2);
}

.site-footer__links a {
  color: #CCCCCC;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--aw-transition);
}

.site-footer__links a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.site-footer__bottom {
  border-top: 2px solid #333;
  padding: var(--aw-sp-3);
  text-align: center;
  max-width: var(--aw-max-width);
  margin: 0 auto;
}

.site-footer__bottom p {
  font-size: 0.8rem;
  color: #888888;
  line-height: 1.6;
}

.site-footer__disclaimer {
  margin-top: var(--aw-sp-2);
  font-size: 0.75rem;
  color: #777777;
  font-style: italic;
}

/* === AGE MODAL === */
.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--aw-sp-3);
}

.age-modal.active {
  display: flex;
}

.age-modal__box {
  background: var(--aw-surface);
  border: 4px solid var(--aw-border);
  box-shadow: var(--aw-shadow-lg);
  padding: var(--aw-sp-5);
  text-align: center;
  max-width: 500px;
  width: 100%;
}

.age-modal__box h2 {
  text-transform: uppercase;
  margin-bottom: var(--aw-sp-2);
}

.age-modal__box p {
  margin-bottom: var(--aw-sp-4);
  color: var(--aw-text-muted);
}

.age-modal__actions {
  display: flex;
  gap: var(--aw-sp-3);
  justify-content: center;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--aw-text);
  color: #FFFFFF;
  border-top: 3px solid var(--aw-primary);
  padding: var(--aw-sp-3) var(--aw-sp-4);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--aw-sp-2);
}

.cookie-banner.active {
  display: flex;
}

.cookie-banner p {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--aw-sp-2);
}

/* === TOAST === */
.toast-container {
  position: fixed;
  top: var(--aw-sp-7);
  right: var(--aw-sp-3);
  z-index: 8000;
  display: flex;
  flex-direction: column;
  gap: var(--aw-sp-2);
}

.toast {
  background: var(--aw-surface);
  border: 3px solid var(--aw-border);
  box-shadow: var(--aw-shadow);
  padding: var(--aw-sp-3) var(--aw-sp-4);
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 260px;
  max-width: 380px;
  animation: toastIn 0.3s ease forwards;
}

.toast.toast--leaving {
  animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(40px); }
}

/* === CONTACT / REACH LAYOUT === */
.reach-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--aw-sp-5);
  max-width: var(--aw-max-width);
  margin: 0 auto;
  padding: var(--aw-sp-6) var(--aw-sp-3);
}

.reach-layout__form {
  background: var(--aw-surface);
  border: 3px solid var(--aw-border);
  box-shadow: var(--aw-shadow-lg);
  padding: var(--aw-sp-5);
}

.reach-layout__field {
  margin-bottom: var(--aw-sp-3);
}

.reach-layout__field label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: var(--aw-sp-1);
}

.reach-layout__field input,
.reach-layout__field textarea,
.reach-layout__field select {
  width: 100%;
  padding: var(--aw-sp-2);
  border: 2px solid var(--aw-border);
  background: var(--aw-bg);
  font-family: var(--aw-font);
  font-size: 1rem;
  color: var(--aw-text);
}

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

.reach-layout__success {
  display: none;
  background: var(--aw-accent);
  border: 3px solid var(--aw-border);
  padding: var(--aw-sp-4);
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

.reach-layout__info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--aw-sp-3);
}

.reach-layout__info-item {
  display: flex;
  gap: var(--aw-sp-2);
  align-items: flex-start;
}

.reach-layout__info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* === LEGAL PAGE === */
.legal-page {
  max-width: var(--aw-max-width);
  margin: 0 auto;
  padding: var(--aw-sp-6) var(--aw-sp-3);
}

.legal-page__nav {
  background: var(--aw-surface);
  border: 3px solid var(--aw-border);
  box-shadow: var(--aw-shadow);
  padding: var(--aw-sp-4);
  margin-bottom: var(--aw-sp-5);
}

.legal-page__content {
  line-height: 1.8;
  color: var(--aw-text-muted);
}

.legal-page__content h2 {
  color: var(--aw-text);
  text-transform: uppercase;
  margin-top: var(--aw-sp-5);
  margin-bottom: var(--aw-sp-2);
}

/* === GAME PAGE SPECIFIC === */
.game-page-hero {
  background: var(--aw-primary);
  padding: calc(var(--aw-sp-7) + 60px) var(--aw-sp-3) var(--aw-sp-5);
  text-align: center;
  color: #FFFFFF;
  border-bottom: 4px solid var(--aw-border);
}

.game-page-hero h1 {
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--aw-sp-2);
}

.game-page-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.game-page-board {
  max-width: 700px;
  margin: 0 auto;
}

.game-page-board .game-zone__board {
  max-width: 100%;
}

.game-page-board .memory-card__front {
  font-size: 2rem;
}

.game-page-board .memory-card__back {
  font-size: 3rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.25rem; }

  .zigzag-grid__item {
    grid-template-columns: 1fr;
  }

  .zigzag-grid__item:nth-child(even) {
    direction: ltr;
  }

  .zigzag-grid__icon {
    min-height: 180px;
  }

  .timeline-section__line {
    left: 18px;
  }

  .timeline-section__steps {
    padding-left: var(--aw-sp-6);
  }

  .timeline-section__marker {
    left: calc(-1 * var(--aw-sp-6) - 2px);
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--aw-sp-4);
  }

  .reach-layout {
    grid-template-columns: 1fr;
  }

  .stats-ticker__item {
    min-width: 120px;
    padding: var(--aw-sp-2) var(--aw-sp-3);
    font-size: 0.85rem;
  }

  .game-zone__board {
    gap: var(--aw-sp-1);
  }

  .memory-card__front,
  .memory-card__back {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

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

  .stats-ticker__inner {
    flex-direction: column;
  }

  .stats-ticker__item {
    border-right: none;
    border-bottom: 2px solid #333;
  }

  .stats-ticker__item:last-child {
    border-bottom: none;
  }

  .game-zone__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
