
:root {
  --night: #071b2f;
  --night-soft: #0d2942;
  --pond: #0f5d70;
  --pond-light: #1a8392;
  --leaf: #4a6e26;
  --frog: #94dc4c;
  --frog-dark: #2f4618;
  --mist: #d2f0b4;
  --firefly: #f7d75e;
  --cream: #f4f7e8;
  --white: #ffffff;
  --ink: #10202d;
  --muted: #b8c8d3;
  --danger: #c43d3d;
  --overlay: rgba(3, 18, 32, 0.78);
  --overlay-soft: rgba(7, 27, 47, 0.90);
  --card: rgba(13, 41, 66, 0.92);
  --card-light: rgba(244, 247, 232, 0.96);
  --line: rgba(210, 240, 180, 0.30);
  --shadow: rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background-color: var(--night);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.72;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; }
img { width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.wrapper { width: 100%; display: flex; flex-direction: column; min-height: 100vh; }
.centered { width: 92%; margin: 0 auto; }
.d-flex { display: flex; }
main { flex: 1 0 auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background: var(--overlay-soft);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px var(--shadow);
  backdrop-filter: blur(12px);
}
.header__inner { min-height: 78px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { text-decoration: none; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand__mark { width: 46px; height: 46px; object-fit: contain; }
.brand__text { font-size: 22px; font-weight: 800; letter-spacing: 0.4px; color: var(--mist); }
.nav { align-items: center; gap: 28px; }
.nav a { text-decoration: none; font-size: 16px; font-weight: 700; color: var(--cream); position: relative; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--frog); transition: width 0.25s ease; }
.nav a:hover::after, .nav a[aria-current='page']::after { width: 100%; }
.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: var(--night-soft); padding: 10px; flex-direction: column; justify-content: center; gap: 5px; }
.burger span { display: block; width: 100%; height: 2px; background: var(--cream); transition: transform 0.25s ease, opacity 0.25s ease; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.notice-strip {
  margin-top: 78px;
  background: var(--frog-dark);
  border-bottom: 1px solid var(--frog);
}
.notice-strip__inner { align-items: center; justify-content: center; gap: 18px; padding: 13px 0; text-align: center; }
.notice-strip__age { font-size: 28px; line-height: 1; font-weight: 900; color: var(--firefly); white-space: nowrap; }
.notice-strip p { margin: 0; font-size: 14px; font-weight: 700; color: var(--white); }

.hero {
  position: relative;
  background-image: url('../sammakonmets-stys/assets/background.webp');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  border-bottom: 1px solid var(--line);
}
.hero::before { content: ''; position: absolute; inset: 0; background: var(--overlay); }
.hero__inner { position: relative; z-index: 2; min-height: 680px; align-items: center; justify-content: space-between; gap: 7%; padding: 74px 0 68px; }
.hero__content { flex: 0 0 45%; width: 45%; }
.hero__media { flex: 0 0 45%; width: 45%; }
.hero__logo { width: 100%; filter: drop-shadow(0 12px 24px var(--shadow)); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(7,27,47,0.72); color: var(--mist); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
h1, h2, h3 { margin-top: 0; line-height: 1.14; }
h1 { font-size: 52px; margin-bottom: 20px; color: var(--white); }
h2 { font-size: 36px; margin-bottom: 20px; color: var(--mist); }
h3 { font-size: 23px; margin-bottom: 12px; color: var(--white); }
p { margin-top: 0; }
.lead { font-size: 20px; color: var(--cream); }
.muted { color: var(--muted); }
.hero__actions { margin-top: 28px; align-items: center; gap: 14px; flex-wrap: wrap; }
.button { position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 15px; border: 1px solid transparent; text-decoration: none; font-size: 16px; font-weight: 800; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }
.button::before { content: ''; position: absolute; top: -60px; left: -80px; width: 36px; height: 170px; background: rgba(255,255,255,0.36); transform: rotate(25deg); transition: left 0.45s ease; }
.button:hover::before { left: 120%; }
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 28px var(--shadow); }
.button--primary { background: var(--frog); color: var(--ink); border-color: var(--mist); }
.button--secondary { background: rgba(7,27,47,0.78); color: var(--white); border-color: var(--line); }

.section { padding: 82px 0; position: relative; border-bottom: 1px solid var(--line); }
.section--dark { background: var(--night); }
.section--soft { background: var(--night-soft); }
.section--image {
  background-image: url('../sammakonmets-stys/assets/background.webp');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.section--image::before { content: ''; position: absolute; inset: 0; background: var(--overlay-soft); }
.section--image .centered { position: relative; z-index: 2; }
.section__head { width: 76%; margin-bottom: 38px; }
.section__head p { color: var(--muted); font-size: 18px; }
.section__inner { align-items: center; justify-content: space-between; gap: 7%; }
.section__copy { flex: 0 0 45%; width: 45%; }
.section__visual { flex: 0 0 45%; width: 45%; }
.image-frame { border: 2px solid var(--line); border-radius: 26px; overflow: hidden; box-shadow: 0 18px 46px var(--shadow); background: var(--night-soft); transition: transform 0.35s ease, border-color 0.35s ease; }
.image-frame:hover { transform: translateY(-6px) rotate(-0.4deg); border-color: var(--frog); }
.image-frame img { aspect-ratio: 4 / 3; object-fit: cover; }

.cards { flex-wrap: wrap; gap: 22px; align-items: stretch; }
.card { flex: 1 0 30%; width: 30%; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--card); box-shadow: 0 12px 30px var(--shadow); }
.card__number { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 16px; border-radius: 50%; background: var(--frog); color: var(--ink); font-size: 16px; font-weight: 900; }
.card p { color: var(--muted); }

.symbols { flex-wrap: wrap; gap: 18px; justify-content: center; }
.symbol-card { flex: 0 0 15%; width: 15%; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(7,27,47,0.74); text-align: center; transition: transform 0.25s ease, border-color 0.25s ease; }
.symbol-card:hover { transform: translateY(-5px); border-color: var(--frog); }
.symbol-card img { aspect-ratio: 1 / 1; object-fit: contain; }
.symbol-card span { display: block; margin-top: 8px; font-size: 13px; color: var(--mist); font-weight: 700; }

.game-teaser { align-items: stretch; justify-content: space-between; gap: 7%; }
.game-teaser__copy { flex: 0 0 45%; width: 45%; }
.game-teaser__art { flex: 0 0 45%; width: 45%; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 28px; background: rgba(7,27,47,0.78); overflow: hidden; box-shadow: 0 18px 46px var(--shadow); }
.game-teaser__art img { width: 74%; padding: 30px; object-fit: contain; }

.faq {
  position: relative;
  isolation: isolate;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(247, 215, 94, 0.38);
  border-radius: 30px;
  background:
    radial-gradient(circle at 94% 6%, rgba(247, 215, 94, 0.17), transparent 25%),
    radial-gradient(circle at 5% 96%, rgba(148, 220, 76, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(15, 93, 112, 0.48), rgba(7, 27, 47, 0.94) 48%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  counter-reset: faq-item;
}
.faq::before, .faq::after { content: ''; position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; }
.faq::before { top: -9px; right: 9%; width: 18px; height: 18px; background: var(--firefly); box-shadow: 0 0 22px rgba(247, 215, 94, 0.85), 36px 24px 0 -5px var(--frog), -28px 40px 0 -7px var(--mist); }
.faq::after { bottom: 20px; left: -7px; width: 13px; height: 13px; background: var(--frog); box-shadow: 0 0 20px rgba(148, 220, 76, 0.8); }
.faq__item {
  counter-increment: faq-item;
  border: 1px solid rgba(210, 240, 180, 0.3);
  border-radius: 18px;
  background: linear-gradient(100deg, rgba(13, 41, 66, 0.98), rgba(15, 93, 112, 0.28));
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18), inset 4px 0 0 rgba(148, 220, 76, 0.65);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq__item:hover { transform: translateX(5px); border-color: var(--frog); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26), 0 0 22px rgba(148, 220, 76, 0.09), inset 4px 0 0 var(--firefly); }
.faq__item.is-open { border-color: rgba(247, 215, 94, 0.72); background: linear-gradient(110deg, rgba(20, 61, 82, 0.98), rgba(15, 93, 112, 0.48)); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28), inset 4px 0 0 var(--firefly); }
.faq__question { width: 100%; border: 0; background: transparent; color: var(--white); text-align: left; padding: 18px 20px; font-size: 18px; font-weight: 800; align-items: center; justify-content: space-between; gap: 20px; }
.faq__question span:first-child { display: flex; align-items: center; gap: 15px; }
.faq__question span:first-child::before { content: counter(faq-item, decimal-leading-zero); flex: 0 0 auto; color: var(--firefly); font-size: 12px; letter-spacing: 1px; }
.faq__question span:last-child { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 34px; width: 34px; height: 34px; border-radius: 11px; background: rgba(148, 220, 76, 0.13); border: 1px solid rgba(148, 220, 76, 0.45); color: var(--frog); font-size: 24px; line-height: 1; transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease; }
.faq__item.is-open .faq__question span:last-child { transform: rotate(45deg); background: var(--firefly); color: var(--ink); border-color: var(--firefly); }
.faq__answer { display: none; margin: 0 20px 20px 62px; padding: 17px 19px; border-radius: 14px; background: rgba(3, 18, 32, 0.48); border: 1px solid rgba(210, 240, 180, 0.16); color: #dbe8ef; }
.faq__item.is-open .faq__answer { display: block; }

.page-hero { position: relative; padding: 150px 0 72px; background-image: url('../sammakonmets-stys/assets/background.webp'); background-size: cover; background-position: center 34%; background-attachment: fixed; border-bottom: 1px solid var(--line); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: var(--overlay); }
.page-hero__inner { position: relative; z-index: 2; width: 78%; }
.page-hero h1 { font-size: 48px; }
.page-hero p { font-size: 19px; color: var(--cream); }

.game-panel { padding: 22px; border: 1px solid var(--line); border-radius: 28px; background: rgba(3,18,32,0.94); box-shadow: 0 22px 54px var(--shadow); }
.game-panel__notice { padding: 16px 18px; margin-bottom: 18px; border-radius: 16px; border: 1px solid var(--frog); background: var(--frog-dark); color: var(--white); font-weight: 700; text-align: center; }
.game-frame { width: 100%; height: 940px; border: 0; border-radius: 20px; background: var(--night); display: block; }

.steps { flex-direction: column; gap: 18px; }
.step { align-items: flex-start; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--card); }
.step__badge { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 50%; background: var(--frog); color: var(--ink); align-items: center; justify-content: center; font-weight: 900; }
.step__content { flex: 1 1 auto; }
.step__content p { margin-bottom: 0; color: var(--muted); }

.policy { width: 84%; }
.policy__section { margin-bottom: 44px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.policy__section:last-child { border-bottom: 0; }
.policy__section p, .policy__section li { color: var(--muted); }
.policy__section ul { padding-left: 22px; }
.policy__note { padding: 18px 20px; border: 1px solid var(--frog); border-radius: 18px; background: var(--frog-dark); color: var(--white); }
.policy__contact { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--card); }

.contact-layout { align-items: flex-start; justify-content: space-between; gap: 7%; }
.contact-copy { flex: 0 0 45%; width: 45%; }
.contact-form { flex: 0 0 45%; width: 45%; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--card); box-shadow: 0 18px 44px var(--shadow); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; margin-bottom: 8px; font-size: 15px; font-weight: 800; color: var(--mist); }
.form-row input, .form-row textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; background: var(--night); color: var(--white); padding: 13px 14px; outline: none; }
.form-row textarea { height: 170px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--frog); box-shadow: 0 0 0 3px rgba(148,220,76,0.12); }
.form-row.is-error input, .form-row.is-error textarea { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(196,61,61,0.16); }
.form-error { display: none; margin-top: 6px; color: #ff9a9a; font-size: 13px; font-weight: 700; }
.form-row.is-error .form-error { display: block; }

.responsible-links { flex-wrap: wrap; gap: 18px; align-items: stretch; }
.responsible-link { flex: 1 0 22%; width: 22%; min-height: 128px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--card-light); color: var(--ink); text-decoration: none; align-items: center; justify-content: center; flex-direction: column; gap: 12px; text-align: center; }
.responsible-link img { width: 76%; height: 46px; object-fit: contain; }
.responsible-link img.responsible-link__logo--peluuri { transform: scale(1.8); }
.responsible-link strong { font-size: 15px; }

.site-footer { background: #041421; border-top: 1px solid var(--line); }
.footer__top { padding: 48px 0 34px; justify-content: space-between; gap: 7%; align-items: flex-start; }
.footer__brand { flex: 0 0 38%; width: 38%; }
.footer__brand p { color: var(--muted); }
.footer__links { flex: 0 0 55%; width: 55%; justify-content: space-between; gap: 24px; }
.footer__column { flex: 1 1 0; }
.footer__column h3 { font-size: 17px; margin-bottom: 14px; }
.footer__column a { display: block; margin-bottom: 9px; color: var(--muted); text-decoration: none; font-size: 14px; }
.footer__column a:hover { color: var(--frog); }
.footer__bottom { border-top: 1px solid var(--line); padding: 18px 0 24px; font-size: 13px; color: var(--muted); }
.footer__bottom p { margin: 0; }

.age-gate, .form-modal { position: fixed; inset: 0; z-index: 3000; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(1,10,18,0.92); }
.age-gate.is-visible, .form-modal.is-visible { display: flex; }
.age-gate__card, .form-modal__card { width: 520px; padding: 34px; border: 1px solid var(--frog); border-radius: 28px; background: var(--night-soft); box-shadow: 0 24px 80px rgba(0,0,0,0.56); text-align: center; }
.age-gate__age { display: inline-flex; align-items: center; justify-content: center; width: 94px; height: 94px; margin-bottom: 18px; border-radius: 50%; border: 4px solid var(--firefly); color: var(--firefly); font-size: 34px; font-weight: 900; }
.age-gate__actions { margin-top: 24px; justify-content: center; gap: 12px; flex-wrap: wrap; }

.cookie-banner { position: fixed; left: 4%; bottom: 24px; z-index: 2200; width: 430px; padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: var(--night-soft); box-shadow: 0 18px 50px var(--shadow); display: none; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: 14px; color: var(--muted); }
.cookie-banner__actions { gap: 10px; flex-wrap: wrap; }
.cookie-banner .button { min-height: 44px; padding: 0 16px; font-size: 14px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.divider { width: 100%; height: 18px; background-image: radial-gradient(circle, var(--firefly) 1px, transparent 2px); background-size: 24px 18px; opacity: 0.5; }

/* Brighter game-inspired finish shared by every page */
body {
  background-image:
    radial-gradient(circle at 12% 18%, rgba(26, 131, 146, 0.12), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(148, 220, 76, 0.08), transparent 24%);
  background-attachment: fixed;
}
.site-header::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: linear-gradient(90deg, transparent, var(--frog), var(--firefly), transparent); opacity: 0.65; }
.brand__mark { filter: drop-shadow(0 0 10px rgba(148, 220, 76, 0.35)); transition: transform 0.3s ease, filter 0.3s ease; }
.brand:hover .brand__mark { transform: rotate(-7deg) scale(1.08); filter: drop-shadow(0 0 15px rgba(247, 215, 94, 0.55)); }
.brand__text { text-shadow: 0 0 18px rgba(148, 220, 76, 0.16); }
.nav a:hover { color: var(--mist); }
.eyebrow { border-color: rgba(247, 215, 94, 0.42); background: linear-gradient(100deg, rgba(15, 93, 112, 0.58), rgba(7, 27, 47, 0.86)); box-shadow: 0 0 18px rgba(148, 220, 76, 0.09); }
.eyebrow::before { content: '✦'; color: var(--firefly); font-size: 11px; }
h1, h2 { text-shadow: 0 4px 22px rgba(0, 0, 0, 0.24); }
.section--dark { background: linear-gradient(155deg, #071b2f 0%, #08233a 52%, #071b2f 100%); }
.section--soft { background: linear-gradient(145deg, #0d2942 0%, #0c3349 46%, #0a243b 100%); }
.section:not(.section--image)::after { content: ''; position: absolute; top: 24px; right: 4%; width: 90px; height: 90px; pointer-events: none; opacity: 0.14; background-image: radial-gradient(circle, var(--firefly) 2px, transparent 3px); background-size: 18px 18px; mask-image: linear-gradient(135deg, #000, transparent); }
.section > .centered { position: relative; z-index: 1; }
.button--primary { background: linear-gradient(135deg, var(--frog), #c8f36f 58%, var(--firefly)); box-shadow: 0 9px 24px rgba(148, 220, 76, 0.2); }
.button--secondary:hover { border-color: var(--firefly); background: rgba(15, 93, 112, 0.55); }
.card, .step, .contact-form, .policy__contact, .game-panel, .game-teaser__art, .responsible-link {
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card::before, .step::before, .contact-form::before, .policy__contact::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  width: 68px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--frog), var(--firefly));
  box-shadow: 0 0 13px rgba(148, 220, 76, 0.45);
}
.card:hover, .step:hover, .responsible-link:hover { transform: translateY(-6px); border-color: rgba(148, 220, 76, 0.75); box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 24px rgba(148, 220, 76, 0.08); }
.card__number, .step__badge { background: linear-gradient(135deg, var(--frog), var(--firefly)); box-shadow: 0 6px 18px rgba(148, 220, 76, 0.24); }
.symbol-card { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05); }
.symbol-card:hover { box-shadow: 0 13px 30px rgba(0, 0, 0, 0.28), 0 0 20px rgba(148, 220, 76, 0.12); background: rgba(15, 93, 112, 0.34); }
.page-hero::after, .hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 78% 24%, rgba(247, 215, 94, 0.16), transparent 22%), radial-gradient(circle at 18% 78%, rgba(148, 220, 76, 0.12), transparent 20%); }
.page-hero__inner, .hero__inner { position: relative; z-index: 2; }
.policy__section h2 { position: relative; padding-left: 18px; }
.policy__section h2::before { content: ''; position: absolute; left: 0; top: 0.14em; bottom: 0.14em; width: 4px; border-radius: 99px; background: linear-gradient(var(--frog), var(--firefly)); }
.responsible-link { overflow: hidden; box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22); }
.responsible-link::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.42) 48%, transparent 70%); transform: translateX(-120%); transition: transform 0.55s ease; }
.responsible-link:hover::after { transform: translateX(120%); }
.site-footer { background: linear-gradient(145deg, #041421, #06243a); }
.footer__column h3 { color: var(--mist); }
.form-row input:focus, .form-row textarea:focus { background: rgba(7, 27, 47, 0.88); box-shadow: 0 0 0 3px rgba(148,220,76,0.12), 0 8px 24px rgba(0,0,0,0.2); }

@media (max-width: 980px) {
  .centered { width: 94%; }
  .nav { position: fixed; top: 78px; right: -100%; width: 82%; height: 100vh; padding: 38px 28px; background: var(--night-soft); flex-direction: column; align-items: flex-start; gap: 24px; transition: right 0.3s ease; border-left: 1px solid var(--line); }
  .nav.is-open { right: 0; }
  .nav a { font-size: 20px; }
  .burger { display: flex; }
  .hero__inner, .section__inner, .game-teaser, .contact-layout, .footer__top { flex-direction: column; gap: 34px; }
  .hero__content, .hero__media, .section__copy, .section__visual, .game-teaser__copy, .game-teaser__art, .contact-copy, .contact-form, .footer__brand, .footer__links { flex: 0 0 100%; width: 100%; }
  .hero__inner { min-height: auto; padding-top: 56px; }
  h1 { font-size: 44px; }
  .page-hero h1 { font-size: 42px; }
  .section__head, .page-hero__inner, .policy { width: 100%; }
  .card { flex: 1 0 46%; width: 46%; }
  .symbol-card { flex: 0 0 22%; width: 22%; }
  .footer__links { display: flex; flex-wrap: wrap; }
  .footer__column { flex: 1 0 44%; }
  .responsible-link { flex: 1 0 45%; width: 45%; }
  .game-frame { height: 820px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .centered { width: 92%; }
  .header__inner { min-height: 70px; }
  .brand__mark { width: 40px; height: 40px; }
  .brand__text { font-size: 17px; }
  .nav { top: 70px; width: 100%; }
  .notice-strip { margin-top: 70px; }
  .notice-strip__inner { align-items: flex-start; gap: 10px; }
  .notice-strip__age { font-size: 24px; }
  .notice-strip p { font-size: 12px; text-align: left; }
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  h3 { font-size: 21px; }
  .lead { font-size: 18px; }
  .hero, .section--image, .page-hero { background-attachment: scroll; }
  .hero__content, .hero__media, .section__copy, .section__visual, .game-teaser__copy, .game-teaser__art, .contact-copy, .contact-form { flex: 0 0 100%; width: 100%; }
  .section { padding: 60px 0; }
  .page-hero { padding: 126px 0 56px; }
  .page-hero h1 { font-size: 36px; }
  .card { flex: 0 0 100%; width: 100%; }
  .symbol-card { flex: 0 0 45%; width: 45%; }
  .responsible-link { flex: 0 0 100%; width: 100%; }
  .faq { padding: 14px; border-radius: 22px; }
  .faq__question { padding: 16px 14px; font-size: 16px; gap: 12px; }
  .faq__question span:first-child { gap: 9px; }
  .faq__question span:last-child { flex-basis: 32px; width: 32px; height: 32px; }
  .faq__answer { margin: 0 14px 14px; padding: 15px; }
  .footer__links { flex-direction: column; }
  .footer__column { flex: 0 0 100%; }
  .game-panel { padding: 10px; border-radius: 18px; }
  .game-frame { height: 720px; border-radius: 14px; }
  .age-gate__card, .form-modal__card { width: 100%; padding: 24px; }
  .cookie-banner { left: 4%; bottom: 14px; width: 92%; }
  .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
