:root {
  color-scheme: dark;
  --ink: #f5f1e8;
  --muted: #aab8b1;
  --soft: #6f817b;
  --night: #061817;
  --deep: #0b2220;
  --panel: #102d2a;
  --panel-2: #173935;
  --mint: #20d7a0;
  --mint-dark: #0e9b76;
  --amber: #f4c766;
  --coral: #ff7b62;
  --blue: #6bb8ff;
  --line: rgba(245, 241, 232, .14);
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(32, 215, 160, .08), transparent 36%),
    linear-gradient(225deg, rgba(255, 123, 98, .08), transparent 34%),
    var(--night);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }

.shell {
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

.micro {
  color: var(--amber);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-main { background: var(--mint); color: #031412; }
.btn-main:hover { background: #4be5b8; }
.btn-quiet { background: rgba(245, 241, 232, .06); border-color: var(--line); }
.btn-quiet:hover { border-color: rgba(244, 199, 102, .55); }

.age-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(2, 9, 9, .86);
  backdrop-filter: blur(12px);
}
.age-box {
  width: min(460px, 100%);
  border: 1px solid rgba(244, 199, 102, .34);
  border-radius: 12px;
  padding: 26px;
  background: #102622;
  box-shadow: var(--shadow);
  text-align: center;
}
.age-box img { margin: 0 auto 12px; }
.age-box h2 { margin: 6px 0 8px; font-size: clamp(1.45rem, 4vw, 2.1rem); line-height: 1.05; }
.age-box p { margin: 0; color: var(--muted); }
.age-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 20px 0 12px; }
.fine { font-size: .82rem; color: var(--soft); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 24, 23, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.notice-strip {
  padding: 7px 12px;
  color: #061817;
  background: var(--amber);
  font-size: .76rem;
  font-weight: 850;
  text-align: center;
}
.nav-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.brand span { display: grid; line-height: 1; }
.brand b { font-size: 1.05rem; }
.brand small { color: var(--mint); font-weight: 800; }
.site-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-menu a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  text-decoration: none;
  font-weight: 760;
  font-size: .94rem;
}
.site-menu a:hover,
.site-menu a[aria-current="page"] {
  color: var(--ink);
  background: rgba(245, 241, 232, .06);
}
.site-menu .play-link {
  margin-left: 6px;
  color: #031412;
  background: var(--mint);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 24, 23, .96), rgba(6, 24, 23, .72) 45%, rgba(6, 24, 23, .18)),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(245, 241, 232, .035) 58px 59px);
}
.hero-scene {
  position: absolute;
  inset: 0;
  opacity: .9;
  background:
    radial-gradient(circle at 78% 48%, rgba(244, 199, 102, .26), transparent 24%),
    linear-gradient(135deg, transparent 48%, rgba(255, 123, 98, .28) 48% 52%, transparent 52%);
}
.hero-reels {
  position: absolute;
  right: clamp(16px, 8vw, 140px);
  top: 150px;
  display: flex;
  gap: 14px;
  transform: rotate(-5deg);
}
.hero-reels span,
.hero-cards span {
  display: grid;
  place-items: center;
  width: clamp(78px, 10vw, 124px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 241, 232, .18);
  border-radius: 12px;
  background: #f5f1e8;
  color: #071817;
  box-shadow: var(--shadow);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 950;
}
.hero-reels span:nth-child(1) { color: #bb2442; }
.hero-reels span:nth-child(3) { color: var(--mint-dark); }
.hero-cards {
  position: absolute;
  right: clamp(30px, 13vw, 210px);
  bottom: 95px;
  display: flex;
  gap: 10px;
  transform: rotate(7deg);
}
.hero-cards span { width: clamp(68px, 8vw, 104px); aspect-ratio: .72; color: #bb2442; }
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 96px 0 130px;
}
.hero h1 {
  max-width: 770px;
  margin: 12px 0 18px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: .88;
  letter-spacing: 0;
}
.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.signal-band {
  background: #f5f1e8;
  color: #071817;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.signal-grid article {
  min-height: 120px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 22px;
  border-left: 1px solid rgba(7, 24, 23, .14);
}
.signal-grid article:first-child { border-left: 0; }
.signal-grid b { font-size: 2rem; line-height: 1; }
.signal-grid span { color: #42605a; font-weight: 760; }

.band { padding: 86px 0; }
.band-muted { background: rgba(255, 255, 255, .035); border-block: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head h2,
.split h2,
.cta-row h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 5vw, 3.55rem);
  line-height: .98;
  letter-spacing: 0;
}
.section-head p,
.split p,
.cta-row p { color: var(--muted); }

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.game-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.game-card.is-wide { min-height: 390px; }
.game-art {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(32, 215, 160, .28), rgba(244, 199, 102, .14)),
    #09211f;
}
.game-art span {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: .72;
  border-radius: 10px;
  background: #f5f1e8;
  color: #061817;
  font-size: clamp(1rem, 4vw, 2.3rem);
  font-weight: 950;
  text-align: center;
}
.game-art span:first-child { color: var(--coral); }
.game-art span:nth-child(3) { color: var(--mint-dark); }
.game-art-cards span { aspect-ratio: .7; }
.game-copy { padding: 28px; display: flex; flex-direction: column; align-items: flex-start; }
.game-copy h2,
.game-copy h3 { margin: 8px 0 10px; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.05; }
.game-copy p { color: var(--muted); margin: 0 0 18px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tag-row span,
.mini-pills span {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 760;
}
.game-copy .btn { margin-top: auto; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}
.stack { display: grid; gap: 12px; }
.stack article,
.support-grid article,
.faq-list details,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, .045);
  padding: 20px;
}
.stack b { color: var(--amber); }
.stack p { margin: 6px 0 0; }

.faq-list { display: grid; gap: 12px; }
.faq-list summary { cursor: pointer; font-weight: 850; }
.faq-list p { color: var(--muted); margin-bottom: 0; }
.cta-band {
  padding: 56px 0;
  background: var(--mint);
  color: #061817;
}
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cta-row .micro { color: #0d5f4d; }
.cta-row h2 { margin-bottom: 0; }
.cta-row .btn-main { background: #061817; color: var(--ink); }

.page-hero {
  padding: 92px 0 64px;
  background:
    linear-gradient(120deg, rgba(32, 215, 160, .13), rgba(255, 123, 98, .08)),
    var(--deep);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  max-width: 860px;
  margin: 8px 0 12px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: .95;
  letter-spacing: 0;
}
.page-hero p { max-width: 740px; color: var(--muted); font-size: 1.08rem; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.support-grid h3 { margin: 0 0 8px; }
.support-grid p { color: var(--muted); }
.support-grid a { color: var(--mint); font-weight: 850; }
.checklist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.checklist p {
  margin: 0;
  border-left: 3px solid var(--mint);
  background: rgba(245, 241, 232, .045);
  padding: 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 24px;
}
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 6px; color: var(--muted); font-weight: 800; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 24, 23, .72);
  color: var(--ink);
  padding: 12px 13px;
}
.form-status { color: var(--mint); font-weight: 850; }
.legal-flow {
  max-width: 850px;
}
.legal-flow h2 { margin-top: 30px; }
.legal-flow p { color: var(--muted); }

.game-shell { padding: 34px 0 74px; }
.game-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 16px;
}
.game-top h1 {
  margin: 6px 0 8px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .95;
}
.game-top p { color: var(--muted); margin: 0; }
.back-link { color: var(--mint); font-weight: 850; text-decoration: none; }
.balance-box {
  min-width: 220px;
  border: 1px solid rgba(244, 199, 102, .3);
  border-radius: var(--radius);
  background: rgba(244, 199, 102, .08);
  padding: 18px;
}
.balance-box span,
.balance-box small { display: block; color: var(--muted); }
.balance-box strong { display: block; font-size: 2.1rem; line-height: 1; color: var(--amber); margin: 7px 0; }
.link-button {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 7px 11px;
}
.machine-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 22px;
  align-items: start;
}
.slot-machine,
.card-table,
.game-side {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23, 57, 53, .96), rgba(10, 31, 29, .96));
  box-shadow: var(--shadow);
}
.slot-machine,
.card-table { padding: clamp(16px, 3vw, 26px); }
.machine-label {
  min-height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(244, 199, 102, .35);
  border-radius: var(--radius);
  color: var(--amber);
  background: rgba(0, 0, 0, .22);
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-weight: 950;
}
.reel-window {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 12px;
  background: #061817;
}
.reel {
  height: clamp(112px, 15vw, 146px);
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, .18);
  border-radius: 12px;
  background: #f5f1e8;
}
.reel-track {
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}
.reel-symbol {
  height: clamp(112px, 15vw, 146px);
  display: grid;
  place-items: center;
  color: #061817;
  font-size: clamp(2.3rem, 7vw, 4.8rem);
  font-weight: 950;
}
.reel-symbol.is-word { font-size: clamp(1rem, 3vw, 1.9rem); color: #bb2442; }
.control-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bet-stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px;
  background: rgba(0, 0, 0, .18);
}
.bet-stepper button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 6px;
  background: rgba(245, 241, 232, .08);
  color: var(--ink);
  font-size: 1.3rem;
}
.bet-stepper span { min-width: 78px; text-align: center; font-weight: 850; }
.spin-control {
  min-width: 130px;
  min-height: 54px;
  border: 0;
  border-radius: var(--radius);
  background: var(--coral);
  color: #190907;
  font-size: 1.15rem;
  font-weight: 950;
}
.game-side { padding: 18px; }
.tab-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 14px; }
.tab-buttons button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(245, 241, 232, .04);
  color: var(--muted);
  padding: 10px 8px;
  font-weight: 820;
}
.tab-buttons button.is-active { background: var(--amber); color: #061817; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.tab-panel h2 { margin: 0 0 12px; }
.tab-panel li { margin-bottom: 8px; color: var(--muted); }
.paytable { display: grid; gap: 8px; }
.pay-row,
.history-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 10px;
  background: rgba(0, 0, 0, .16);
}
.history-list p { color: var(--muted); margin: 0; }
.responsible-note {
  margin-top: 22px;
  display: flex;
  gap: 16px;
  border: 1px solid rgba(244, 199, 102, .28);
  border-radius: var(--radius);
  background: rgba(244, 199, 102, .06);
  padding: 18px;
}
.responsible-note b { color: var(--amber); min-width: 170px; }
.responsible-note p { margin: 0; color: var(--muted); }
.win-toast {
  position: fixed;
  inset: auto 20px 20px auto;
  z-index: 70;
  min-width: 210px;
  border: 1px solid rgba(244, 199, 102, .45);
  border-radius: 12px;
  padding: 18px;
  background: #102622;
  box-shadow: var(--shadow);
}
.win-toast b,
.win-toast span { display: block; }
.win-toast span { color: var(--amber); font-size: 1.8rem; font-weight: 950; }

.score-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.score-row span {
  display: grid;
  gap: 4px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 8px;
  color: var(--muted);
  background: rgba(0, 0, 0, .16);
}
.score-row b { color: var(--ink); font-size: 1.25rem; }
.cards-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(12px, 4vw, 30px);
  padding: 24px;
  border-radius: 12px;
  background: #061817;
}
.card-slot { display: grid; justify-items: center; gap: 10px; }
.card-slot > span { color: var(--muted); font-weight: 850; }
.playing-card {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(104px, 16vw, 160px);
  aspect-ratio: .72;
  border-radius: 13px;
  background: #f5f1e8;
  color: #061817;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .3);
  transition: transform .35s ease, background .2s ease;
}
.playing-card.is-red { color: #bd233f; }
.playing-card.is-back {
  color: rgba(245, 241, 232, .92);
  background:
    linear-gradient(135deg, rgba(32, 215, 160, .28), transparent),
    repeating-linear-gradient(45deg, rgba(245, 241, 232, .16) 0 8px, transparent 8px 16px),
    #183834;
}
.playing-card small,
.playing-card strong {
  position: absolute;
  font-size: .9rem;
}
.playing-card small { top: 10px; left: 10px; white-space: pre-line; }
.playing-card strong { bottom: 10px; right: 12px; }
.playing-card b { font-size: clamp(2.8rem, 7vw, 5.4rem); line-height: 1; }
.versus { display: grid; place-items: center; gap: 8px; min-width: 110px; text-align: center; }
.versus b { color: var(--amber); font-size: 2rem; }
.versus span { color: var(--muted); font-size: .88rem; max-width: 140px; }
.streak-row {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}
.streak-row b { color: var(--amber); }
.streak-row span { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.streak-row i {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 24px;
  border-radius: 999px;
  background: rgba(32, 215, 160, .14);
  color: var(--mint);
  font-style: normal;
  font-size: .78rem;
  font-weight: 850;
}
.choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.choice-row button {
  min-height: 84px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, .06);
  color: var(--ink);
}
.choice-row b,
.choice-row span { display: block; }
.choice-row span { color: var(--muted); font-size: .78rem; }
.choice-row button:hover { border-color: var(--mint); }
.history-dots { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.history-dots span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-weight: 900;
}
.history-dots .win { color: #061817; background: var(--mint); }
.history-dots .lose { color: #061817; background: var(--coral); }

.site-footer {
  padding: 58px 0 32px;
  border-top: 1px solid var(--line);
  background: #041211;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}
.footer-grid h2 { margin: 0 0 12px; font-size: 1rem; }
.footer-grid p,
.footer-bottom p { color: var(--muted); }
.footer-grid a:not(.brand) {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  text-decoration: none;
}
.footer-grid a:hover { color: var(--mint); }
.mini-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-bottom { margin-top: 34px; border-top: 1px solid var(--line); padding-top: 22px; font-size: .9rem; }
.cookie-bar {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: #102622;
  box-shadow: var(--shadow);
}
.cookie-bar p { margin: 0; color: var(--muted); }

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .site-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #102622;
    box-shadow: var(--shadow);
  }
  .site-menu.is-open { display: grid; }
  .site-menu .play-link { margin-left: 0; text-align: center; }
  .hero { min-height: 600px; }
  .hero::before { background: linear-gradient(180deg, rgba(6, 24, 23, .98), rgba(6, 24, 23, .7)); }
  .hero-reels { top: auto; bottom: 44px; right: 16px; opacity: .46; }
  .hero-cards { display: none; }
  .signal-grid,
  .support-grid,
  .checklist,
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .game-grid,
  .split,
  .contact-layout,
  .machine-layout { grid-template-columns: 1fr; }
  .game-top { align-items: stretch; flex-direction: column; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 24px, 1140px); }
  .notice-strip { font-size: .68rem; }
  .nav-row { min-height: 64px; }
  .brand img { width: 40px; height: 40px; }
  .hero { min-height: 560px; }
  .hero-copy { padding: 70px 0 150px; }
  .hero h1 { font-size: clamp(2.6rem, 15vw, 4rem); }
  .signal-grid,
  .support-grid,
  .checklist,
  .footer-grid,
  .score-row,
  .choice-row { grid-template-columns: 1fr; }
  .game-card { grid-template-columns: 1fr; }
  .game-art { min-height: 220px; }
  .band { padding: 58px 0; }
  .page-hero { padding: 62px 0 44px; }
  .cta-row,
  .cookie-bar { align-items: stretch; flex-direction: column; }
  .cards-stage { grid-template-columns: 1fr; }
  .versus { min-width: 0; }
  .responsible-note { display: block; }
  .responsible-note b { display: block; margin-bottom: 6px; }
  .age-box { padding: 20px; }
}
