:root {
  --ink: #17221f;
  --ink-soft: #586760;
  --mint-900: #176c57;
  --mint-700: #238467;
  --mint-600: #2d9f7b;
  --mint-300: #aee8d1;
  --mint-100: #e7f8f0;
  --mint-50: #f4fbf7;
  --lavender: #eeeafd;
  --lavender-strong: #7767c8;
  --peach: #fff0e8;
  --peach-strong: #d97850;
  --blue: #e8f3ff;
  --blue-strong: #4d7db6;
  --cream: #fbfcfa;
  --line: #dfe9e4;
  --white: #fff;
  --shadow-sm: 0 8px 24px rgba(32, 79, 63, .07);
  --shadow-md: 0 18px 50px rgba(31, 73, 59, .12);
  --shadow-lg: 0 32px 90px rgba(26, 67, 53, .17);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1200px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }

::selection { background: var(--mint-300); color: #133a2f; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.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; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; border-radius: 10px; background: var(--ink); color: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 80px;
  border-bottom: 1px solid transparent;
  background: rgba(251, 252, 250, .82);
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled { border-color: rgba(216, 230, 223, .9); background: rgba(255, 255, 255, .94); box-shadow: 0 8px 30px rgba(32, 72, 59, .06); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--mint-600); font-size: 21px; font-weight: 850; letter-spacing: -.8px; white-space: nowrap; }
.brand > span > span { color: var(--ink); }
.brand-mark { width: 40px; height: 40px; flex: none; }
.primary-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.primary-nav a { position: relative; color: #42514b; font-size: 14px; font-weight: 650; }
.primary-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; border-radius: 2px; background: var(--mint-600); transform: scaleX(0); transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); }
.header-cta { margin-left: 16px; }
.nav-toggle { display: none; margin-left: auto; }

.icon-button { width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 13px; background: var(--white); cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--ink); transition: .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid var(--mint-600);
  border-radius: 15px;
  background: var(--mint-600);
  color: var(--white);
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(45, 159, 123, .2);
  transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--mint-700); border-color: var(--mint-700); box-shadow: 0 14px 30px rgba(45, 159, 123, .27); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid rgba(45, 159, 123, .25); outline-offset: 3px; }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 43px; padding: 0 17px; border-radius: 12px; font-size: 14px; }
.button-ghost { border-color: var(--line); background: var(--white); color: var(--ink); box-shadow: none; }
.button-ghost:hover { border-color: var(--mint-300); background: var(--mint-50); color: var(--mint-900); box-shadow: none; }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); box-shadow: none; }
.button-light:hover { border-color: var(--mint-100); background: var(--mint-100); color: var(--mint-900); box-shadow: none; }
.button-dark { border-color: var(--ink); background: var(--ink); box-shadow: 0 12px 30px rgba(23, 34, 31, .2); }
.button-dark:hover { border-color: #263a34; background: #263a34; }

.hero { position: relative; min-height: 690px; overflow: hidden; border-bottom: 1px solid #e9efec; background: #fbfaf8; }
.hero::before { content: ""; position: absolute; z-index: 1; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(90deg, #fbfaf8 0%, rgba(251, 250, 248, .96) 31%, rgba(251, 250, 248, .22) 58%, rgba(251, 250, 248, 0) 78%); pointer-events: none; }
.hero-art { position: absolute; inset: 0 0 0 25%; }
.hero-art picture { display: block; width: 100%; height: 100%; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: 64% 52%; }
.hero-inner { position: relative; z-index: 2; display: flex; min-height: 690px; align-items: center; }
.hero-copy { width: min(610px, 54%); padding: 60px 0 72px; }
.eyebrow, .kicker { color: var(--mint-700); font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid #d7eee5; border-radius: 999px; background: rgba(255, 255, 255, .8); letter-spacing: .09em; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint-600); box-shadow: 0 0 0 5px rgba(45, 159, 123, .12); }
.hero h1 { max-width: 600px; margin: 24px 0 22px; font-size: clamp(48px, 5.4vw, 74px); line-height: .99; letter-spacing: -.064em; }
.hero h1 span { color: var(--mint-600); }
.hero-lead { max-width: 550px; margin: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; }
.play-icon { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255, 255, 255, .88); }
.play-icon svg { width: 19px; height: 19px; fill: var(--mint-600); }
.hero-meta { display: flex; gap: 38px; margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(202, 219, 211, .75); }
.hero-meta div { display: grid; gap: 2px; }
.hero-meta strong { font-size: 22px; letter-spacing: -.03em; }
.hero-meta span { color: #708079; font-size: 12px; }

.safety-strip { position: relative; z-index: 3; border-bottom: 1px solid var(--line); background: var(--white); }
.safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.safety-item { display: flex; min-height: 112px; align-items: center; gap: 14px; padding: 22px 32px; border-right: 1px solid var(--line); }
.safety-item:first-child { padding-left: 0; }
.safety-item:last-child { border-right: 0; }
.safety-item > div { display: grid; gap: 2px; }
.safety-item strong { font-size: 14px; }
.safety-item span:not(.safety-icon) { color: var(--ink-soft); font-size: 12px; }
.safety-icon { display: grid; width: 45px; height: 45px; flex: none; place-items: center; border-radius: 13px; background: var(--mint-100); color: var(--mint-700); }
.safety-icon.peach { background: var(--peach); color: var(--peach-strong); }
.safety-icon.lavender { background: var(--lavender); color: var(--lavender-strong); }
.safety-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.section-heading { margin-bottom: 42px; }
.section-heading h2, .method-copy h2, .faq-intro h2 { margin: 10px 0 12px; font-size: clamp(34px, 4vw, 50px); line-height: 1.08; letter-spacing: -.05em; }
.section-heading p, .method-copy > p, .faq-intro > p { max-width: 630px; margin: 0; color: var(--ink-soft); font-size: 17px; }
.heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.centered { text-align: center; }
.centered p { margin-inline: auto; }
.catalog-section { background: var(--cream); }
.catalog-count { display: flex; align-items: baseline; gap: 8px; padding-bottom: 8px; }
.catalog-count strong { color: var(--mint-600); font-size: 38px; line-height: 1; }
.catalog-count span { color: var(--ink-soft); font-size: 13px; }

.catalog-toolbar { display: grid; grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(150px, .7fr)); gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.search-field, .select-field { position: relative; }
.search-field svg { position: absolute; top: 50%; left: 16px; width: 20px; height: 20px; fill: none; stroke: #6c7c75; stroke-width: 1.8; transform: translateY(-50%); }
.search-field input, .select-field select { width: 100%; height: 48px; border: 1px solid #e1e9e5; border-radius: 12px; background: #f9fbfa; color: var(--ink); outline: 0; }
.search-field input { padding: 0 15px 0 46px; }
.select-field select { appearance: none; padding: 0 36px 0 14px; background-image: linear-gradient(45deg, transparent 50%, #6c7c75 50%), linear-gradient(135deg, #6c7c75 50%, transparent 50%); background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; font-size: 14px; }
.search-field input:focus, .select-field select:focus { border-color: var(--mint-600); background-color: var(--white); box-shadow: 0 0 0 3px rgba(45, 159, 123, .1); }
.active-filter-row { display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 20px; }
.quick-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: #52625b; font-size: 13px; font-weight: 700; cursor: pointer; transition: .2s ease; }
.chip:hover, .chip.is-active { border-color: var(--mint-300); background: var(--mint-100); color: var(--mint-900); }
.clear-filter { padding: 7px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--mint-700); font-size: 13px; font-weight: 700; cursor: pointer; }

.games-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.game-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 4px 18px rgba(25, 69, 54, .045); transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease; animation: card-in .45s both; }
.game-card:hover { z-index: 1; border-color: #bcdccc; box-shadow: var(--shadow-md); transform: translateY(-7px); }
@keyframes card-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.game-media { position: relative; overflow: hidden; aspect-ratio: 16 / 8.4; background: #dde9e4; }
.game-media::after { content: ""; position: absolute; inset: auto 0 0; height: 32%; background: linear-gradient(transparent, rgba(7, 20, 16, .3)); }
.game-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.game-card:hover .game-media img { transform: scale(1.045); }
.game-label { position: absolute; z-index: 2; top: 13px; left: 13px; padding: 6px 9px; border-radius: 8px; background: rgba(255, 255, 255, .94); color: var(--ink); font-size: 10px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; backdrop-filter: blur(8px); }
.favorite-button { position: absolute; z-index: 3; top: 12px; right: 12px; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255, 255, 255, .45); border-radius: 50%; background: rgba(17, 32, 27, .42); color: var(--white); cursor: pointer; backdrop-filter: blur(8px); transition: .2s ease; }
.favorite-button:hover, .favorite-button[aria-pressed="true"] { border-color: rgba(255, 255, 255, .8); background: var(--white); color: #e16773; }
.favorite-button svg { width: 18px; height: 18px; fill: transparent; stroke: currentColor; stroke-width: 1.8; }
.favorite-button[aria-pressed="true"] svg { fill: currentColor; }
.game-body { padding: 20px 20px 18px; }
.game-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.game-title { margin: 0; font-size: 20px; line-height: 1.2; letter-spacing: -.025em; }
.score-pill { display: flex; align-items: center; gap: 4px; flex: none; padding: 5px 8px; border-radius: 8px; background: var(--mint-100); color: var(--mint-900); font-size: 12px; font-weight: 850; }
.score-pill svg { width: 13px; height: 13px; fill: var(--mint-600); }
.game-description { min-height: 46px; margin: 9px 0 15px; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { padding: 5px 8px; border-radius: 7px; background: #f1f5f3; color: #5c6a64; font-size: 10px; font-weight: 700; }
.game-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 17px; padding-top: 14px; border-top: 1px solid #edf1ef; }
.platform-list { display: flex; align-items: center; gap: 5px; color: #718078; font-size: 10px; font-weight: 750; }
.platform-dot { width: 4px; height: 4px; border-radius: 50%; background: #a3b0aa; }
.card-link { display: inline-flex; align-items: center; gap: 6px; padding: 4px 0; border: 0; background: transparent; color: var(--mint-700); font-size: 12px; font-weight: 800; cursor: pointer; }
.card-link span { transition: transform .2s ease; }
.card-link:hover span { transform: translateX(3px); }
.load-more-wrap { display: flex; justify-content: center; margin-top: 34px; }
.empty-state { padding: 64px 20px; border: 1px dashed #cbdad3; border-radius: var(--radius-md); background: var(--white); text-align: center; }
.empty-state > span { font-size: 38px; }
.empty-state h3 { margin: 12px 0 2px; font-size: 21px; }
.empty-state p { margin: 0 0 20px; color: var(--ink-soft); }

.week-section { background: var(--mint-50); }
.week-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 22px; }
.week-side { display: grid; gap: 22px; }
.week-card { position: relative; min-height: 278px; overflow: hidden; border-radius: 26px; background: #18352c; color: var(--white); box-shadow: var(--shadow-md); }
.week-card-main { min-height: 578px; }
.week-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.week-card:hover img { transform: scale(1.04); }
.week-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9, 19, 16, .05) 25%, rgba(8, 20, 16, .9) 100%); }
.week-card-main .week-overlay { background: linear-gradient(180deg, rgba(8, 18, 15, .02) 20%, rgba(8, 18, 15, .92) 100%); }
.week-content { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 32px; }
.week-card-main .week-content { padding: 42px; }
.week-content h3 { margin: 10px 0 8px; font-size: 34px; line-height: 1; letter-spacing: -.04em; }
.week-card-main .week-content h3 { font-size: 46px; }
.week-content p { max-width: 580px; margin: 0 0 24px; color: rgba(255, 255, 255, .8); }
.week-badge, .mini-label { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.week-badge { padding: 7px 10px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 999px; background: rgba(255, 255, 255, .14); backdrop-filter: blur(8px); }
.week-badge svg { width: 15px; height: 15px; fill: #fff0a9; stroke: none; }
.mini-label { color: #c6f4e3; }
.compact-card .week-content { display: grid; grid-template-columns: 1fr auto; align-items: end; }
.compact-card .week-content h3 { grid-column: 1; }
.circle-link { grid-row: 1 / 3; grid-column: 2; display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid rgba(255, 255, 255, .35); border-radius: 50%; background: rgba(255, 255, 255, .12); color: var(--white); cursor: pointer; backdrop-filter: blur(8px); }
.circle-link:hover { background: var(--white); color: var(--ink); }
.circle-link svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

.method-section { position: relative; overflow: hidden; background: var(--white); }
.method-section::before { content: ""; position: absolute; top: 50px; right: -160px; width: 430px; height: 430px; border: 80px solid var(--mint-50); border-radius: 50%; }
.method-layout { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 90px; }
.method-copy > p { max-width: 590px; }
.text-arrow { display: inline-flex; align-items: center; gap: 10px; margin-top: 25px; color: var(--mint-700); font-weight: 800; }
.text-arrow span { font-size: 20px; transition: transform .2s ease; }
.text-arrow:hover span { transform: translateX(4px); }
.score-card { display: flex; align-items: center; gap: 30px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, #fff 20%, #f3fcf8 100%); box-shadow: var(--shadow-md); }
.score-orbit { position: relative; display: grid; width: 164px; height: 164px; flex: none; place-items: center; border-radius: 50%; background: conic-gradient(var(--mint-600) 0deg 331deg, #dcebe5 331deg); }
.score-orbit::before { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: var(--white); }
.score-orbit::after { content: ""; position: absolute; inset: 22px; border: 1px dashed #c7dfd5; border-radius: 50%; }
.score-orbit div { position: relative; z-index: 1; display: grid; text-align: center; }
.score-orbit strong { font-size: 44px; line-height: 1; letter-spacing: -.07em; }
.score-orbit span { color: var(--ink-soft); font-size: 12px; }
.score-legend { display: grid; gap: 7px; }
.score-legend > span { color: var(--mint-700); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.score-legend strong { font-size: 20px; line-height: 1.3; }
.score-legend p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.criteria-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 70px; }
.criteria-card { position: relative; padding: 27px 24px 25px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.criteria-card h3 { margin: 18px 0 7px; font-size: 17px; }
.criteria-card p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.criteria-number { position: absolute; top: 22px; right: 22px; color: #c8d4cf; font-size: 12px; font-weight: 850; }
.criteria-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 14px; }
.criteria-icon.mint { background: var(--mint-100); color: var(--mint-700); }
.criteria-icon.lavender { background: var(--lavender); color: var(--lavender-strong); }
.criteria-icon.peach { background: var(--peach); color: var(--peach-strong); }
.criteria-icon.blue { background: var(--blue); color: var(--blue-strong); }
.criteria-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.panel-section { background: #f8f7fd; }
.heading-aside { max-width: 350px !important; padding-bottom: 8px; font-size: 14px !important; }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card { position: relative; margin: 0; padding: 31px; border: 1px solid #e5e2f0; border-radius: 23px; background: var(--white); box-shadow: 0 8px 28px rgba(58, 47, 98, .045); }
.featured-quote { border-color: #d9d2f5; box-shadow: 0 14px 40px rgba(85, 65, 163, .1); transform: translateY(-10px); }
.quote-mark { height: 34px; color: var(--mint-600); font-family: Georgia, serif; font-size: 48px; line-height: 1; }
.quote-card blockquote { min-height: 126px; margin: 10px 0 24px; color: #3a4742; font-size: 15px; line-height: 1.75; }
.quote-card figcaption { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid #ecefea; }
.avatar { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; font-size: 11px; font-weight: 850; }
.avatar-mint { background: var(--mint-100); color: var(--mint-900); }
.avatar-lavender { background: var(--lavender); color: var(--lavender-strong); }
.avatar-peach { background: var(--peach); color: var(--peach-strong); }
.quote-card figcaption div { display: grid; line-height: 1.3; }
.quote-card figcaption strong { font-size: 13px; }
.quote-card figcaption span:not(.avatar) { color: var(--ink-soft); font-size: 11px; }
.panel-note { margin: 20px 0 0; color: #7a827e; font-size: 11px; text-align: center; }

.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 95px; }
.faq-intro { position: sticky; top: 120px; }
.contact-card { display: inline-flex; align-items: center; gap: 13px; margin-top: 28px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 15px; background: var(--mint-50); }
.contact-card > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 11px; background: var(--mint-100); color: var(--mint-700); }
.contact-card svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.contact-card div { display: grid; line-height: 1.35; }
.contact-card small { color: var(--ink-soft); font-size: 10px; }
.contact-card strong { font-size: 13px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 2px; font-size: 16px; font-weight: 750; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 28px; height: 28px; flex: none; border-radius: 50%; background: var(--mint-50); }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; top: 13px; left: 8px; width: 12px; height: 2px; border-radius: 2px; background: var(--mint-700); transition: transform .2s ease; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details > div { overflow: hidden; }
.accordion details p { margin: -3px 44px 24px 2px; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }

.final-cta { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; min-height: 210px; margin-bottom: 100px; padding: 48px 54px; overflow: hidden; border-radius: 30px; background: linear-gradient(115deg, #dff6eb, #edeafd); }
.final-cta > *:not(.cta-decoration) { position: relative; z-index: 2; }
.cta-decoration { position: absolute; border: 18px solid rgba(255, 255, 255, .45); border-radius: 50%; }
.cta-decoration.one { width: 190px; height: 190px; top: -95px; right: 20%; }
.cta-decoration.two { width: 110px; height: 110px; bottom: -65px; left: 17%; }
.cta-icon { display: grid; width: 72px; height: 72px; place-items: center; border-radius: 21px; background: rgba(255, 255, 255, .7); color: var(--mint-700); transform: rotate(-5deg); }
.cta-icon svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.final-cta p { margin: 0 0 3px; color: var(--mint-900); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.final-cta h2 { max-width: 650px; margin: 0; font-size: clamp(26px, 3vw, 38px); line-height: 1.15; letter-spacing: -.045em; }
.final-cta em { color: var(--mint-700); font-style: normal; }

.site-footer { border-top: 1px solid var(--line); background: #f5f8f6; }
.footer-main { display: grid; grid-template-columns: .95fr 1.45fr; gap: 95px; padding: 72px 0 52px; }
.footer-brand > p { max-width: 390px; margin: 20px 0; color: var(--ink-soft); font-size: 13px; }
.footer-notice { display: flex; max-width: 390px; align-items: center; gap: 11px; }
.footer-notice > span { display: grid; width: 40px; height: 40px; flex: none; place-items: center; border: 2px solid #95a39c; border-radius: 50%; color: #596861; font-size: 11px; font-weight: 850; }
.footer-notice p { margin: 0; color: #6b7973; font-size: 11px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-links h3 { margin: 0 0 8px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a, .footer-links span, .footer-links button { padding: 0; border: 0; background: transparent; color: var(--ink-soft); font-size: 12px; text-align: left; }
.footer-links a:hover, .footer-links button:hover { color: var(--mint-700); cursor: pointer; }
.footer-bottom { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); color: #738078; font-size: 10px; }
.footer-bottom p:last-child { max-width: 610px; text-align: right; }

.game-dialog { width: min(720px, calc(100% - 30px)); max-height: min(820px, calc(100vh - 30px)); padding: 0; overflow: auto; border: 0; border-radius: 27px; background: var(--white); color: var(--ink); box-shadow: var(--shadow-lg); }
.game-dialog::backdrop, .cookie-dialog::backdrop { background: rgba(16, 28, 24, .56); backdrop-filter: blur(5px); }
.dialog-close { position: sticky; z-index: 5; top: 15px; display: grid; width: 40px; height: 40px; float: right; margin: 15px 15px -55px 0; place-items: center; border: 1px solid rgba(255, 255, 255, .45); border-radius: 50%; background: rgba(17, 28, 24, .56); color: var(--white); cursor: pointer; backdrop-filter: blur(8px); }
.dialog-close svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.dialog-hero { position: relative; height: 280px; overflow: hidden; background: #dbe8e2; }
.dialog-hero img { width: 100%; height: 100%; object-fit: cover; }
.dialog-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(12, 24, 20, .9)); }
.dialog-hero-copy { position: absolute; z-index: 2; right: 30px; bottom: 25px; left: 30px; color: var(--white); }
.dialog-hero-copy span { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.dialog-hero-copy h2 { margin: 5px 0 0; font-size: 38px; line-height: 1; letter-spacing: -.05em; }
.dialog-body { padding: 30px; }
.dialog-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
.dialog-fact { padding: 13px; border-radius: 12px; background: #f3f7f5; }
.dialog-fact span { display: block; color: var(--ink-soft); font-size: 10px; }
.dialog-fact strong { font-size: 13px; }
.dialog-intro { color: var(--ink-soft); font-size: 15px; }
.dialog-body h3 { margin: 24px 0 5px; font-size: 18px; }
.dialog-body p { margin-top: 0; }
.purchase-note { display: flex; gap: 10px; margin: 24px 0; padding: 14px; border: 1px solid #f1dccf; border-radius: 12px; background: #fff8f4; color: #70594e; font-size: 12px; }
.purchase-note svg { width: 20px; height: 20px; flex: none; fill: none; stroke: var(--peach-strong); stroke-width: 1.8; }
.dialog-actions { display: flex; align-items: center; gap: 12px; }
.dialog-disclaimer { margin: 16px 0 0 !important; color: #77837d; font-size: 10px; }

.cookie-banner { position: fixed; z-index: 300; right: 22px; bottom: 22px; left: 22px; display: none; width: min(760px, calc(100% - 44px)); margin-left: auto; padding: 20px; border: 1px solid #d7e6df; border-radius: 20px; background: rgba(255, 255, 255, .97); box-shadow: var(--shadow-lg); backdrop-filter: blur(16px); }
.cookie-banner.is-visible { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; animation: banner-in .35s var(--ease); }
@keyframes banner-in { from { opacity: 0; transform: translateY(20px); } }
.cookie-copy { display: flex; align-items: center; gap: 15px; }
.cookie-icon { display: grid; width: 45px; height: 45px; flex: none; place-items: center; border-radius: 14px; background: var(--peach); color: var(--peach-strong); }
.cookie-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.cookie-copy div { display: grid; gap: 3px; }
.cookie-copy strong { font-size: 14px; }
.cookie-copy p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.cookie-copy a { color: var(--mint-700); text-decoration: underline; }
.cookie-actions { display: flex; align-items: center; gap: 8px; }
.cookie-actions button { min-height: 40px; padding: 0 13px; border-radius: 10px; font-size: 11px; }
.cookie-text-button { border: 0; background: transparent; color: var(--mint-700); font-weight: 750; cursor: pointer; }
.cookie-secondary { border: 1px solid var(--line); background: var(--white); font-weight: 750; cursor: pointer; }
.cookie-primary { border: 1px solid var(--mint-600); background: var(--mint-600); color: var(--white); font-weight: 750; cursor: pointer; }
.cookie-dialog { width: min(560px, calc(100% - 30px)); padding: 0; border: 0; border-radius: 24px; color: var(--ink); box-shadow: var(--shadow-lg); }
.cookie-dialog-inner { padding: 29px; }
.cookie-dialog-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.cookie-dialog h2 { margin: 0; font-size: 25px; letter-spacing: -.04em; }
.cookie-dialog-head p { margin: 4px 0 0; color: var(--ink-soft); font-size: 13px; }
.cookie-dialog-close { display: grid; width: 36px; height: 36px; flex: none; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; }
.cookie-dialog-close svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.cookie-options { display: grid; gap: 10px; margin: 22px 0; }
.cookie-option { display: grid; grid-template-columns: 1fr auto; gap: 14px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; }
.cookie-option strong { font-size: 13px; }
.cookie-option p { grid-column: 1; margin: 3px 0 0; color: var(--ink-soft); font-size: 11px; }
.switch { position: relative; width: 42px; height: 24px; }
.switch input { position: absolute; opacity: 0; }
.switch span { position: absolute; inset: 0; border-radius: 99px; background: #cbd5d0; transition: .2s ease; }
.switch span::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--white); box-shadow: 0 1px 4px rgba(0,0,0,.18); transition: .2s ease; }
.switch input:checked + span { background: var(--mint-600); }
.switch input:checked + span::after { transform: translateX(18px); }
.switch input:focus-visible + span { outline: 3px solid rgba(45, 159, 123, .22); outline-offset: 2px; }
.switch input:disabled + span { opacity: .7; }
.cookie-dialog-actions { display: flex; justify-content: flex-end; gap: 10px; }
.cookie-dialog-actions .button { min-height: 44px; font-size: 12px; }

.toast { position: fixed; z-index: 400; right: 24px; bottom: 24px; max-width: 340px; padding: 13px 16px; border-radius: 12px; background: var(--ink); color: var(--white); font-size: 12px; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(10px); transition: .25s ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

/* Legal pages */
.legal-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #eefaf4, #f5f2ff); }
.breadcrumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; color: var(--ink-soft); font-size: 12px; }
.breadcrumbs a:hover { color: var(--mint-700); }
.legal-hero h1 { max-width: 800px; margin: 8px 0 15px; font-size: clamp(42px, 6vw, 66px); line-height: 1; letter-spacing: -.06em; }
.legal-hero p { max-width: 680px; margin: 0; color: var(--ink-soft); font-size: 17px; }
.legal-updated { display: inline-flex; margin-top: 24px; padding: 7px 10px; border: 1px solid rgba(45, 159, 123, .2); border-radius: 8px; background: rgba(255,255,255,.65); color: var(--mint-900); font-size: 11px; font-weight: 750; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); justify-content: space-between; gap: 80px; padding-top: 78px; padding-bottom: 110px; }
.legal-toc { position: sticky; top: 112px; align-self: start; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.legal-toc strong { display: block; margin-bottom: 10px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.legal-toc a { display: block; padding: 7px 0; color: var(--ink-soft); font-size: 12px; }
.legal-toc a:hover { color: var(--mint-700); }
.legal-content { min-width: 0; }
.legal-content > section { scroll-margin-top: 110px; padding: 0 0 36px; margin: 0 0 36px; border-bottom: 1px solid var(--line); }
.legal-content > section:last-child { margin-bottom: 0; border-bottom: 0; }
.legal-content h2 { margin: 0 0 14px; font-size: 27px; line-height: 1.2; letter-spacing: -.035em; }
.legal-content h3 { margin: 24px 0 9px; font-size: 17px; }
.legal-content p, .legal-content li { color: #53625b; font-size: 14px; line-height: 1.8; }
.legal-content ul { padding-left: 20px; }
.legal-content li + li { margin-top: 7px; }
.legal-content a { color: var(--mint-700); text-decoration: underline; text-underline-offset: 3px; }
.legal-note { padding: 17px 19px; border-left: 3px solid var(--mint-600); border-radius: 0 12px 12px 0; background: var(--mint-50); }
.legal-note p { margin: 0; }
.policy-table { width: 100%; margin: 20px 0; overflow: hidden; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: 14px; font-size: 12px; }
.policy-table th, .policy-table td { padding: 13px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.policy-table th { background: #f3f7f5; font-weight: 800; }
.policy-table tr:last-child td { border-bottom: 0; }

@media (max-width: 1050px) {
  .primary-nav { gap: 20px; }
  .hero { min-height: 640px; }
  .hero-inner { min-height: 640px; }
  .hero-art { left: 20%; }
  .hero-copy { width: 60%; }
  .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .method-layout { gap: 45px; }
  .score-card { padding: 24px; }
  .score-orbit { width: 140px; height: 140px; }
  .faq-layout { gap: 55px; }
  .footer-main { gap: 50px; }
}

@media (max-width: 840px) {
  .section { padding: 82px 0; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; top: 70px; right: 20px; left: 20px; display: none; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-md); }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { padding: 12px; border-radius: 10px; }
  .primary-nav a:hover { background: var(--mint-50); }
  .primary-nav a::after { display: none; }
  .hero { min-height: 760px; }
  .hero::before { background: linear-gradient(180deg, rgba(251, 250, 248, .98) 0%, rgba(251, 250, 248, .9) 48%, rgba(251, 250, 248, .18) 75%); }
  .hero-art { inset: 0; }
  .hero-art img { object-position: 65% 100%; }
  .hero-inner { min-height: 760px; align-items: flex-start; }
  .hero-copy { width: 100%; padding-top: 80px; }
  .hero-copy h1 { max-width: 590px; font-size: clamp(48px, 10vw, 66px); }
  .hero-lead { max-width: 570px; }
  .hero-meta { max-width: 550px; }
  .safety-grid { grid-template-columns: 1fr; padding: 12px 0; }
  .safety-item, .safety-item:first-child { min-height: 90px; padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .safety-item:last-child { border-bottom: 0; }
  .catalog-toolbar { grid-template-columns: 1fr 1fr; }
  .search-field { grid-column: 1 / -1; }
  .week-grid { grid-template-columns: 1fr; }
  .week-side { grid-template-columns: 1fr 1fr; }
  .week-card-main { min-height: 500px; }
  .method-layout { grid-template-columns: 1fr; }
  .score-card { max-width: 620px; }
  .quotes-grid { grid-template-columns: 1fr; }
  .featured-quote { transform: none; }
  .quote-card blockquote { min-height: 0; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .final-cta { grid-template-columns: auto 1fr; }
  .final-cta .button { grid-column: 2; justify-self: start; }
  .footer-main { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 38px; }
  .legal-toc { position: static; columns: 2; }
  .cookie-banner.is-visible { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { height: 70px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand { font-size: 19px; }
  .hero { min-height: 790px; }
  .hero-inner { min-height: 790px; }
  .hero-copy { padding-top: 58px; }
  .hero h1 { margin-top: 19px; font-size: 47px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 27px; }
  .hero-actions .button { width: 100%; }
  .hero-meta { gap: 0; justify-content: space-between; margin-top: 30px; }
  .hero-meta strong { font-size: 18px; }
  .hero-meta span { max-width: 85px; line-height: 1.3; }
  .section-heading h2, .method-copy h2, .faq-intro h2 { font-size: 36px; }
  .heading-row { align-items: flex-start; flex-direction: column; gap: 18px; }
  .catalog-count { display: none; }
  .catalog-toolbar { grid-template-columns: 1fr; }
  .search-field { grid-column: auto; }
  .active-filter-row { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .games-grid { grid-template-columns: 1fr; }
  .game-description { min-height: 0; }
  .week-card-main { min-height: 450px; }
  .week-side { grid-template-columns: 1fr; }
  .week-card { min-height: 245px; }
  .week-card-main .week-content { padding: 27px; }
  .week-card-main .week-content h3 { font-size: 38px; }
  .score-card { align-items: flex-start; flex-direction: column; }
  .criteria-grid { grid-template-columns: 1fr; }
  .quotes-grid { gap: 14px; }
  .faq-layout { gap: 40px; }
  .accordion summary { font-size: 14px; }
  .final-cta { display: flex; align-items: flex-start; flex-direction: column; margin-bottom: 70px; padding: 35px 25px; }
  .final-cta .button { width: 100%; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; padding: 20px 0; }
  .footer-bottom p { margin: 4px 0; }
  .footer-bottom p:last-child { text-align: left; }
  .dialog-hero { height: 225px; }
  .dialog-hero-copy { right: 20px; bottom: 20px; left: 20px; }
  .dialog-hero-copy h2 { font-size: 30px; }
  .dialog-body { padding: 22px; }
  .dialog-facts { grid-template-columns: 1fr; }
  .dialog-actions { align-items: stretch; flex-direction: column; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; width: auto; padding: 16px; }
  .cookie-copy { align-items: flex-start; }
  .cookie-icon { display: none; }
  .cookie-actions { flex-wrap: wrap; }
  .cookie-actions button { flex: 1; }
  .cookie-actions .cookie-text-button { flex-basis: 100%; }
  .cookie-dialog-inner { padding: 22px; }
  .cookie-dialog-actions { flex-direction: column; }
  .legal-hero { padding: 58px 0 48px; }
  .legal-hero h1 { font-size: 44px; }
  .legal-layout { padding-top: 45px; padding-bottom: 75px; }
  .legal-toc { columns: 1; }
  .policy-table { display: block; overflow-x: auto; white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
