/* ==========================================================================
   Moss Paradox — Match & Blast Puzzle Reviews (Google Play, NZ)
   Palette: caramel gold, candy pink, mint
   ========================================================================== */

:root {
  --caramel-900: #3a1f06;
  --caramel-800: #5b3209;
  --caramel-700: #7d470d;
  --caramel-600: #a55f11;
  --caramel-500: #d07d16;
  --gold-400: #f0a52a;
  --gold-300: #ffc247;
  --gold-200: #ffd980;
  --gold-100: #ffeec2;

  --candy-600: #b8266e;
  --candy-500: #e0357f;
  --candy-400: #ff5fa2;
  --candy-200: #ffc4dd;

  --mint-600: #0d7a5a;
  --mint-500: #17a67c;
  --mint-300: #57e0b6;

  --grape-600: #6b34c9;
  --grape-400: #9d6cf0;

  --ink-900: #1c1206;
  --ink-700: #4a3a25;
  --ink-500: #7a6950;
  --ink-300: #b7a68c;

  --cream-50: #fffdf7;
  --cream-100: #fff7e8;
  --cream-200: #ffefd6;
  --cream-300: #f7e2bd;

  --shadow-xs: 0 1px 3px rgba(58, 31, 6, .07);
  --shadow-sm: 0 3px 10px rgba(58, 31, 6, .09);
  --shadow-md: 0 12px 30px rgba(58, 31, 6, .13);
  --shadow-lg: 0 26px 60px rgba(58, 31, 6, .18);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --f-display: "Trebuchet MS", "Segoe UI", Candara, Optima, sans-serif;
  --f-body: "Segoe UI", Roboto, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-700);
  background-color: var(--cream-100);
  background-image:
    radial-gradient(circle at 10% 4%, rgba(255, 194, 71, .3), transparent 40%),
    radial-gradient(circle at 92% 0%, rgba(255, 95, 162, .18), transparent 36%);
  background-attachment: fixed;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--caramel-600); text-decoration: none; }
a:hover { color: var(--candy-500); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--ink-900);
  line-height: 1.22;
  margin: 0 0 .6em;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(1.95rem, 4.2vw, 3.05rem); }
h2 { font-size: clamp(1.5rem, 2.9vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.08rem; }

p { margin: 0 0 1.15em; }
ul, ol { padding-left: 1.35rem; margin: 0 0 1.2em; }
li { margin-bottom: .5em; }

::selection { background: var(--gold-300); color: var(--caramel-900); }

/* ---------- Layout ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap--narrow { max-width: 880px; }

.section { padding: 70px 0; }
.section--tight { padding: 44px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--caramel-700);
  background: linear-gradient(120deg, var(--gold-200), var(--candy-200));
  border: 1px solid rgba(208, 125, 22, .28);
  padding: .34rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.lede { font-size: 1.14rem; color: var(--ink-500); max-width: 740px; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 253, 247, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(208, 125, 22, .18);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 74px;
}

.brand {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--f-display); font-weight: 800; font-size: 1.16rem;
  color: var(--ink-900); letter-spacing: -.02em;
}
.brand:hover { text-decoration: none; color: var(--caramel-700); }
.brand__mark {
  width: 40px; height: 40px; flex: 0 0 40px;
  display: grid; place-items: center; border-radius: 12px;
  background: linear-gradient(140deg, var(--gold-300), var(--candy-400) 65%, var(--grape-400));
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255,255,255,.6);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__sub {
  display: block; font-family: var(--f-body); font-size: .66rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-500);
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-size: .92rem; font-weight: 600; color: var(--ink-700);
  padding: .5rem .76rem; border-radius: 999px;
  transition: background .16s ease, color .16s ease;
}
.nav a:hover { background: var(--gold-200); color: var(--caramel-800); text-decoration: none; }
.nav a.is-active { background: var(--caramel-700); color: var(--cream-50); }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  border: 1px solid rgba(208,125,22,.35); background: var(--cream-50);
  border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--caramel-700); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--caramel-700);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--f-display); font-size: .97rem; font-weight: 700;
  padding: .8rem 1.55rem; border-radius: 999px; border: 0; cursor: pointer;
  text-align: center; transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(120deg, var(--caramel-600), var(--gold-400) 55%, var(--candy-500));
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { color: #fff; box-shadow: var(--shadow-md); filter: saturate(1.08); }
.btn--ghost {
  color: var(--caramel-800); background: var(--cream-50);
  border: 2px solid rgba(208,125,22,.38);
}
.btn--ghost:hover { color: var(--caramel-900); border-color: var(--caramel-600); }
.btn--wide { width: 100%; }
.btn--sm { padding: .55rem 1.1rem; font-size: .88rem; }

/* Google Play download button */
.btn-play {
  display: inline-flex; align-items: center; gap: .7rem;
  background: #0f1c2e; color: #fff;
  border-radius: var(--r-md); padding: .65rem 1.3rem .65rem 1.05rem;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn-play:hover { color: #fff; text-decoration: none; transform: translateY(-2px); background: #16283f; box-shadow: var(--shadow-md); }
.btn-play svg { width: 26px; height: 26px; flex: 0 0 26px; }
.btn-play__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.btn-play__text small { font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; opacity: .72; }
.btn-play__text b { font-family: var(--f-display); font-size: 1.02rem; font-weight: 700; }
.btn-play--wide { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */

.hero { padding: 74px 0 60px; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: .45em; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--caramel-600), var(--candy-500) 55%, var(--grape-600));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 1.9rem; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 1.5rem; }
.chip {
  font-size: .82rem; font-weight: 700; color: var(--caramel-800);
  background: var(--cream-50); border: 1px solid rgba(208,125,22,.26);
  border-radius: 999px; padding: .32rem .82rem; box-shadow: var(--shadow-xs);
}

/* Hero collage of app icons */
.icon-collage {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  background: var(--cream-50); border: 1px solid rgba(208,125,22,.2);
  border-radius: var(--r-xl); padding: 22px; box-shadow: var(--shadow-lg);
}
.icon-collage a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px; border-radius: var(--r-md);
  background: var(--cream-100); border: 1px solid var(--cream-300);
  transition: transform .16s ease, box-shadow .16s ease;
}
.icon-collage a:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.icon-collage img { width: 54px; height: 54px; border-radius: 13px; box-shadow: var(--shadow-xs); }
.icon-collage span { display: block; font-size: .84rem; font-weight: 700; color: var(--ink-900); line-height: 1.25; }
.icon-collage small { display: block; font-size: .74rem; color: var(--ink-500); font-weight: 400; }

/* ---------- App card ---------- */

.app-card {
  display: flex; flex-direction: column;
  background: var(--cream-50); border: 1px solid rgba(208,125,22,.18);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-xs);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.app-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(224,53,127,.32); }

.app-card__shot {
  aspect-ratio: 16 / 10; overflow: hidden;
  background: linear-gradient(140deg, var(--gold-200), var(--candy-200));
  border-bottom: 1px solid var(--cream-300);
}
.app-card__shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.app-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.app-card__head { display: flex; gap: 13px; align-items: flex-start; margin-bottom: .8rem; }
.app-card__head img { width: 52px; height: 52px; border-radius: 13px; flex: 0 0 52px; box-shadow: var(--shadow-xs); }
.app-card__title { font-family: var(--f-display); font-weight: 800; color: var(--ink-900); font-size: 1.1rem; line-height: 1.2; }
.app-card__dev { font-size: .82rem; color: var(--ink-500); }
.app-card p { font-size: .93rem; }
.app-card__foot { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; padding-top: .6rem; }

/* rating line */
.rating { display: flex; align-items: center; gap: .45rem; font-size: .85rem; color: var(--ink-500); margin-bottom: .6rem; }
.rating b { color: var(--ink-900); font-family: var(--f-display); font-size: 1rem; }
.stars { color: var(--gold-400); letter-spacing: .06em; font-size: .92rem; }

/* ---------- Screenshot gallery ---------- */

.shots {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px;
}
.shots figure { margin: 0; }
.shots img {
  width: 100%; border-radius: var(--r-md);
  border: 1px solid var(--cream-300); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.shots img:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-md); }
.shots figcaption { font-size: .8rem; color: var(--ink-500); margin-top: .5rem; text-align: center; }

/* ---------- Game page hero ---------- */

.game-hero {
  background: linear-gradient(150deg, var(--cream-50), var(--cream-200));
  border-bottom: 1px solid rgba(208,125,22,.18);
  padding: 46px 0 40px;
}
.game-hero__inner { display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center; }
.game-hero__icon {
  width: 116px; height: 116px; border-radius: 26px; flex: 0 0 116px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,.7);
}
.game-hero h1 { margin-bottom: .25em; }
.game-hero__dev { font-size: 1rem; color: var(--ink-500); margin-bottom: .7rem; }
.game-hero__dev b { color: var(--caramel-700); }

.facts { display: flex; flex-wrap: wrap; gap: 10px; }
.fact {
  background: var(--cream-50); border: 1px solid rgba(208,125,22,.22);
  border-radius: var(--r-sm); padding: .5rem .85rem; box-shadow: var(--shadow-xs);
  min-width: 96px;
}
.fact b { display: block; font-family: var(--f-display); font-size: 1.05rem; color: var(--ink-900); line-height: 1.2; }
.fact span { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-500); }

/* ---------- Article ---------- */

.article {
  background: var(--cream-50); border: 1px solid rgba(208,125,22,.16);
  border-radius: var(--r-xl); padding: clamp(24px, 4.6vw, 54px); box-shadow: var(--shadow-sm);
}
.article h2 { margin-top: 2.1em; }
.article h2:first-of-type { margin-top: .4em; }
.article h3 { margin-top: 1.6em; }

.callout {
  border-left: 5px solid var(--gold-400);
  background: linear-gradient(100deg, var(--cream-200), rgba(255,239,214,.3));
  border-radius: 0 var(--r-md) var(--r-md) 0; padding: 18px 22px; margin: 1.7em 0;
}
.callout--tip { border-left-color: var(--mint-500); background: linear-gradient(100deg, #e4fbf3, rgba(228,251,243,.3)); }
.callout--warn { border-left-color: var(--candy-500); background: linear-gradient(100deg, #ffeaf3, rgba(255,234,243,.3)); }
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--caramel-800); }

/* tips list */
.tips { list-style: none; padding: 0; margin: 0 0 1.4em; counter-reset: tip; }
.tips li {
  position: relative; padding-left: 3rem; margin-bottom: 1.05em;
  min-height: 2rem;
}
.tips li::before {
  counter-increment: tip; content: counter(tip);
  position: absolute; left: 0; top: .05em;
  width: 32px; height: 32px; display: grid; place-items: center;
  border-radius: 50%; color: #fff; font-family: var(--f-display); font-weight: 800; font-size: .95rem;
  background: linear-gradient(140deg, var(--caramel-600), var(--candy-500));
}
.tips li b { color: var(--ink-900); }

/* pros / cons */
.proscons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin: 1.6em 0; }
.pc {
  border: 1px solid var(--cream-300); border-radius: var(--r-md);
  padding: 20px 22px; background: var(--cream-100);
}
.pc h4 { margin-bottom: .6rem; display: flex; align-items: center; gap: .5rem; }
.pc ul { list-style: none; padding: 0; margin: 0; }
.pc li { position: relative; padding-left: 1.5rem; font-size: .93rem; }
.pc--pro { border-color: rgba(23,166,124,.35); background: #f2fdf9; }
.pc--pro h4 { color: var(--mint-600); }
.pc--pro li::before { content: "✓"; position: absolute; left: 0; color: var(--mint-500); font-weight: 700; }
.pc--con { border-color: rgba(224,53,127,.3); background: #fff5f9; }
.pc--con h4 { color: var(--candy-600); }
.pc--con li::before { content: "–"; position: absolute; left: 0; color: var(--candy-500); font-weight: 700; }

/* ---------- Tables ---------- */

.table-scroll {
  overflow-x: auto; border-radius: var(--r-lg);
  border: 1px solid rgba(208,125,22,.22); background: var(--cream-50); box-shadow: var(--shadow-xs);
}
table { width: 100%; border-collapse: collapse; min-width: 700px; font-size: .93rem; }
thead th {
  background: linear-gradient(120deg, var(--caramel-700), var(--caramel-500));
  color: var(--cream-100); font-family: var(--f-display); text-align: left;
  padding: 13px 16px; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}
tbody td { padding: 13px 16px; border-bottom: 1px solid var(--cream-200); vertical-align: middle; }
tbody tr:nth-child(even) { background: rgba(255,247,232,.6); }
tbody tr:hover { background: var(--gold-100); }
tbody tr:last-child td { border-bottom: 0; }
.table-caption { font-size: .84rem; color: var(--ink-500); margin-top: .8rem; font-style: italic; }

.t-app { display: flex; align-items: center; gap: 10px; }
.t-app img { width: 38px; height: 38px; border-radius: 10px; flex: 0 0 38px; }
.t-app b { display: block; color: var(--ink-900); font-family: var(--f-display); }
.t-app small { color: var(--ink-500); }

.tag {
  display: inline-block; font-size: .74rem; font-weight: 700;
  padding: .18rem .6rem; border-radius: 999px;
  background: var(--gold-200); color: var(--caramel-800); white-space: nowrap;
}
.tag--pink { background: var(--candy-200); color: var(--candy-600); }
.tag--mint { background: #c7f4e5; color: var(--mint-600); }
.tag--grape { background: #e4d6ff; color: var(--grape-600); }

/* ---------- Product cards (guides) ---------- */

.product {
  position: relative; display: flex; flex-direction: column;
  background: var(--cream-50); border: 2px solid rgba(208,125,22,.22);
  border-radius: var(--r-xl); padding: 30px; box-shadow: var(--shadow-xs);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold-400); }
.product--featured { border-color: var(--candy-400); }
.product__flag {
  position: absolute; top: -13px; right: 24px;
  font-size: .71rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: linear-gradient(120deg, var(--candy-500), var(--grape-600));
  padding: .3rem .8rem; border-radius: 999px; box-shadow: var(--shadow-xs);
}
.product__type { font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--caramel-600); margin-bottom: .5rem; }
.product__price { font-family: var(--f-display); font-size: 2.35rem; font-weight: 800; color: var(--ink-900); line-height: 1; margin: .4rem 0 .2rem; }
.product__price small { font-size: .92rem; font-weight: 700; color: var(--ink-500); margin-left: .3rem; }
.product__note { font-size: .84rem; color: var(--ink-500); margin-bottom: 1.1rem; }
.product__list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.product__list li { position: relative; padding-left: 1.6rem; font-size: .93rem; margin-bottom: .55em; }
.product__list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 10px; height: 10px;
  border-radius: 3px; transform: rotate(45deg);
  background: linear-gradient(140deg, var(--gold-300), var(--candy-400));
}
.product .btn { margin-top: auto; }

/* ---------- Forms ---------- */

.form-panel {
  background: linear-gradient(165deg, #fff, var(--cream-100));
  border: 1px solid rgba(208,125,22,.22); border-radius: var(--r-xl);
  padding: clamp(22px, 4vw, 42px); box-shadow: var(--shadow-md);
}
.form-row { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--f-display); font-weight: 700; font-size: .89rem; color: var(--ink-900); margin-bottom: .4rem; }
.field .req { color: var(--candy-500); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--ink-900);
  background: #fff; border: 2px solid var(--cream-300); border-radius: var(--r-md);
  padding: .76rem 1rem; transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-400); box-shadow: 0 0 0 4px rgba(255,194,71,.26);
}
.field__hint { font-size: .82rem; color: var(--ink-500); margin-top: .35rem; }
.field--check { display: flex; align-items: flex-start; gap: .7rem; font-size: .9rem; margin-bottom: 20px; }
.field--check input { width: 20px; height: 20px; flex: 0 0 20px; margin-top: .18rem; accent-color: var(--caramel-600); }
.field--check label { font-family: var(--f-body); font-weight: 400; margin: 0; color: var(--ink-700); }
.form-note { font-size: .85rem; color: var(--ink-500); border-top: 1px dashed var(--cream-300); margin-top: 1.3rem; padding-top: 1rem; }
.form-status { display: none; margin-top: 1.1rem; padding: 15px 19px; border-radius: var(--r-md); font-weight: 600; font-size: .95rem; }
.form-status.is-visible { display: block; }
.form-status--ok { background: #e4fbf3; border: 1px solid var(--mint-300); color: var(--mint-600); }
.form-status--err { background: #ffeaf3; border: 1px solid var(--candy-200); color: var(--candy-600); }

/* ---------- Cards / stats ---------- */

.card {
  background: var(--cream-50); border: 1px solid rgba(208,125,22,.18);
  border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-xs);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  margin-bottom: 12px; font-size: 1.25rem;
  background: linear-gradient(140deg, var(--gold-200), var(--candy-200));
}

.stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.stat {
  background: var(--cream-50); border: 1px solid rgba(208,125,22,.2);
  border-radius: var(--r-lg); padding: 22px 20px; text-align: center; box-shadow: var(--shadow-xs);
}
.stat b {
  display: block; font-family: var(--f-display); font-size: 2rem; font-weight: 800; line-height: 1.1;
  background: linear-gradient(120deg, var(--caramel-600), var(--candy-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { font-size: .85rem; color: var(--ink-500); }

/* ---------- FAQ ---------- */

.faq details {
  background: var(--cream-50); border: 1px solid rgba(208,125,22,.2);
  border-radius: var(--r-md); padding: 2px 20px; margin-bottom: 12px; box-shadow: var(--shadow-xs);
}
.faq summary {
  cursor: pointer; font-family: var(--f-display); font-weight: 700; color: var(--ink-900);
  padding: 15px 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--caramel-500); line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-bottom: 1rem; font-size: .95rem; }

/* ---------- Banner ---------- */

.banner {
  background: linear-gradient(125deg, var(--caramel-800), var(--caramel-600) 45%, var(--candy-600));
  border-radius: var(--r-xl); padding: clamp(26px, 4.6vw, 50px);
  color: var(--gold-100); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.banner::after {
  content: ""; position: absolute; top: -60%; right: -12%;
  width: 400px; height: 400px; pointer-events: none;
  background: radial-gradient(circle, rgba(255,217,128,.3), transparent 62%);
}
.banner h2 { color: #fff; position: relative; z-index: 2; }
.banner p { color: rgba(255,238,194,.9); position: relative; z-index: 2; }
.banner .hero__cta { position: relative; z-index: 2; margin-top: 1.4rem; }
.banner .btn--ghost { background: rgba(255,253,247,.12); color: #fff; border-color: rgba(255,217,128,.6); }
.banner .btn--ghost:hover { background: rgba(255,253,247,.22); color: #fff; }

/* ---------- Page hero / breadcrumb ---------- */

.page-hero { padding: 56px 0 34px; border-bottom: 1px solid rgba(208,125,22,.16); }
.page-hero h1 { margin-bottom: .3em; }
.breadcrumb { font-size: .83rem; color: var(--ink-500); margin-bottom: .9rem; }
.breadcrumb a { color: var(--caramel-600); font-weight: 600; }

/* ---------- Legal ---------- */

.legal {
  background: var(--cream-50); border: 1px solid rgba(208,125,22,.16);
  border-radius: var(--r-xl); padding: clamp(22px, 4.4vw, 50px); box-shadow: var(--shadow-xs);
}
.legal h2 { font-size: 1.35rem; margin-top: 1.9em; }
.legal h2:first-of-type { margin-top: .3em; }
.legal h3 { font-size: 1.05rem; margin-top: 1.5em; }
.legal p, .legal li { font-size: .96rem; }
.legal .updated {
  font-size: .85rem; color: var(--ink-500); background: var(--cream-200);
  border-radius: var(--r-sm); padding: .55rem 1rem; display: inline-block; margin-bottom: 1.5rem;
}
.toc {
  background: var(--cream-100); border: 1px solid var(--cream-300);
  border-radius: var(--r-md); padding: 18px 24px; margin-bottom: 1.9rem;
}
.toc h4 { margin-bottom: .5rem; }
.toc ol { margin-bottom: 0; font-size: .92rem; }

/* ---------- Contact ---------- */

.info-card {
  background: var(--cream-50); border: 1px solid rgba(208,125,22,.2);
  border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-xs);
}
.info-card dt {
  font-family: var(--f-display); font-weight: 700; color: var(--ink-900);
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 1rem;
}
.info-card dt:first-child { margin-top: 0; }
.info-card dd { margin: .15rem 0 0; font-size: 1rem; }

/* ---------- Disclosure ---------- */

.disclosure {
  border: 2px dashed rgba(208,125,22,.4); background: var(--cream-100);
  border-radius: var(--r-lg); padding: 20px 24px; font-size: .92rem; color: var(--ink-700);
}
.disclosure strong { color: var(--caramel-800); }
.disclosure p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */

.site-footer {
  margin-top: 56px;
  background: linear-gradient(170deg, var(--caramel-900), #24140a);
  color: rgba(255,238,194,.75); padding: 54px 0 24px;
}
.site-footer h4 {
  color: var(--gold-200); font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: .9rem;
}
.site-footer a { color: rgba(255,238,194,.78); font-size: .92rem; }
.site-footer a:hover { color: var(--gold-300); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .48em; }
.site-footer p { font-size: .92rem; }
.site-footer .brand { color: var(--gold-200); }
.site-footer .brand__sub { color: rgba(255,238,194,.55); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-disclaimer {
  margin-top: 22px; font-size: .82rem; line-height: 1.65; color: rgba(255,238,194,.6);
  border: 1px solid rgba(255,217,128,.18); border-radius: var(--r-md); padding: 15px 19px;
}
.footer-bottom {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,217,128,.18);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .85rem;
}

/* ---------- Cookie notice ---------- */

.cookie-notice {
  display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  max-width: 940px; margin-inline: auto;
  background: var(--cream-50); border: 2px solid var(--gold-300);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 18px 22px;
}
.cookie-notice__inner { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.cookie-notice p { margin: 0; font-size: .89rem; max-width: 600px; }
.cookie-notice__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-notice .btn { padding: .55rem 1.15rem; font-size: .87rem; }

/* ---------- Utilities ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 1.4rem; }
.mt-3 { margin-top: 2.2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1.4rem; }
.mb-3 { margin-bottom: 2.2rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--caramel-800);
  color: #fff; padding: .7rem 1.2rem; z-index: 100; border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .grid--4, .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .shots { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .game-hero__inner { grid-template-columns: auto 1fr; }
  .game-hero__inner > .btn-play { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .site-header__inner { position: relative; }
  .nav {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--cream-50); border-bottom: 1px solid rgba(208,125,22,.2);
    box-shadow: var(--shadow-md); padding: 12px 20px 18px; display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .7rem .9rem; border-radius: var(--r-sm); }

  body { font-size: 16px; }
  .section { padding: 48px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .proscons { grid-template-columns: 1fr; }
  .shots { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .icon-collage { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 46px 0 40px; }
  .game-hero__inner { grid-template-columns: 1fr; text-align: left; }
  .game-hero__icon { width: 92px; height: 92px; flex: 0 0 92px; }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
}
