@font-face{font-family:"Manrope";src:url("/assets/fonts/manrope.woff2") format("woff2");font-weight:200 800;font-display:optional}
@font-face{font-family:"Fraunces";src:url("/assets/fonts/fraunces.woff2") format("woff2");font-weight:100 900;font-display:optional}

:root {
  --bg: #f5f0e6;
  --bg-2: #fffdf8;
  --bg-3: #ece5d7;
  --primary: #0f6e7a;
  --primary-hover: #0a5560;
  --secondary: #2f7d5b;
  --accent: #d95f3b;
  --text: #23343b;
  --muted: #5d6d74;
  --border: rgba(23, 38, 45, 0.12);
  --radius: 6px;
  --header-h: 70px;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --ink: #17262d;
  --shadow: 0 10px 30px rgba(23, 38, 45, 0.08);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; overflow-wrap: anywhere; }
button, input, select, textarea { font: inherit; color: inherit; }
button, a, summary, label { -webkit-tap-highlight-color: transparent; }
button, summary, .btn, .filter-btn, .nav-mobile a, .nav-drop-menu a { user-select: none; -webkit-user-select: none; }
textarea { resize: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.2; margin: 0 0 0.6em; color: var(--ink); overflow-wrap: break-word; }
[hidden] { display: none !important; }

.container {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  padding: 0 16px;
  background: rgba(245, 240, 230, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { width: 100%; max-width: 1440px; }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.nav-desktop { display: none; align-items: center; }
.nav-link,
.nav-drop > button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  background: none;
  border: 0;
  border-radius: 6px;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover,
.nav-drop > button:hover,
.nav-drop.is-open > button { color: var(--primary-hover); background: rgba(15,110,122,.08); }
.nav-drop { position: relative; }
.nav-chevron { width: 10px; height: 10px; margin-left: 4px; transition: transform 0.3s ease; }
.nav-drop.is-open .nav-chevron { transform: rotate(180deg); }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  width: 208px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 0;
  box-shadow: var(--shadow);
}
.nav-drop.is-open .nav-drop-menu { display: block; }
.nav-drop-menu a { display: block; padding: 8px 16px; font-size: 14px; color: var(--text); }
.nav-drop-menu a:hover { background: var(--bg-3); color: var(--primary-hover); }
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-cta {
  display: none !important;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .25s ease;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-ghost { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; }
.hero .btn-ghost { border-color: rgba(255,255,255,.75); color: #fff; }
.hero .btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-start {
  margin-top: 16px;
  width: 100%;
  padding: 16px;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.menu-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: currentColor; transition: 0.3s; }
.menu-toggle span + span { margin-top: 6px; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 16px 20px 24px;
  overflow: auto;
  z-index: 999;
  max-height: calc(100vh - var(--header-h));
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.nav-mobile .btn-start { border: 0; color: #fff; }

@media (min-width: 768px) {
  :root { --header-h: 80px; }
  .site-header { padding: 0 24px; }
  .brand { gap: 12px; font-size: 22px; }
}
@media (min-width: 1220px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .header-cta { display: inline-flex !important; }
  .brand { flex: 0 0 auto; }
}

/* Page shell */
.page { padding-top: var(--header-h); min-height: 100vh; }

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero-page { min-height: 380px; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(23,38,45,.86), rgba(23,38,45,.55) 45%, rgba(23,38,45,.92));
}
.hero-copy { position: relative; z-index: 1; max-width: 760px; padding: 64px 0; }
.badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid rgba(15,110,122,.3);
  background: rgba(15,110,122,.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero .badge { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.12); color: #d6f1f4; }
.hero h1 { font-size: clamp(28px, 4vw, 46px); margin-bottom: 16px; color: #fff; }
.hero p { color: rgba(255,255,255,.82); font-size: clamp(15px, 2vw, 18px); max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.disclaimer-note {
  padding: 14px 16px;
  border-left: 2px solid var(--accent);
  background: rgba(217,95,59,.1);
  color: var(--ink);
  font-size: 13px;
}
.hero .disclaimer-note { background: rgba(255,255,255,.12); color: #fff; }

/* Sections */
.section { padding: 72px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.kicker {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p { color: var(--muted); }

.grid-4, .grid-3, .grid-2, .games-grid { display: grid; gap: 24px; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .games-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  transition: border-color .25s, box-shadow .25s;
}
.card:hover { border-color: rgba(15,110,122,.4); box-shadow: var(--shadow); }
.card a:not(.btn) { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}
.stay-card { text-align: center; }
.stay-card h3 { color: var(--primary-hover); font-family: var(--font); font-size: 20px; }
.stay-card p { color: var(--muted); font-size: 15px; }
.stay-card a { color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-decoration: none; }
.stay-card a:hover { text-decoration: underline; }

.game-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.game-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.game-card img { width: 100%; height: 180px; object-fit: cover; }
.game-card .body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.game-card h3 { font-size: 20px; margin-bottom: 8px; }
.game-card h3 a:hover { color: var(--primary); }
.game-card p { color: var(--muted); font-size: 13px; flex: 1; }
.game-card .btn { margin-top: 14px; align-self: flex-start; }
.thumb-wrap { position: relative; }
.pill {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
}
.pill-new { background: var(--secondary); }

.games-wrap { position: relative; background: var(--bg-3); }
.games-wrap .bg {
  position: absolute; inset: 0; opacity: .1;
  background: url("../img/fishing-slots-background.webp") center/cover;
}

.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .split { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.muted { color: var(--muted); }
.frame { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; background: var(--bg-2); }
.frame img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }

/* Bonus */
.bonus-box {
  display: grid;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-2);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.bonus-box p { margin: 0; }
.bonus-box strong { font-family: var(--serif); font-size: 42px; color: var(--accent); display: block; line-height: 1.1; }
.bonus-box .btn { justify-self: center; }
.bonus-box .disclaimer-note { text-align: left; }

/* Catalog */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 32px;
}
.search {
  width: min(320px, 100%);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
}
.search:focus { outline: 2px solid var(--primary); outline-offset: 1px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  padding: 10px 18px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}
.filter-btn.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Game detail */
.play-stage { background: #0d1518; }
.play-frame { position: relative; width: 100%; overflow: hidden; background: #000; }
.play-stage iframe, .play-stage .frame-slot {
  display: block;
  width: 100%;
  height: min(70vh, 640px);
  min-height: 280px;
  border: 0;
  background: #000;
}
@media (max-width: 900px) {
  .play-stage iframe, .play-stage .frame-slot { height: auto; min-height: 200px; aspect-ratio: 16 / 9; max-height: none; }
}
.play-stage.is-play-max { position: fixed; inset: 0; z-index: 4000; height: 100dvh; display: flex; flex-direction: column; }
.play-stage.is-play-max .play-frame,
.play-stage.is-play-max iframe { flex: 1; height: auto !important; min-height: 0; aspect-ratio: auto; }
body.play-max-open { overflow: hidden; }
.play-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.play-bar strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: var(--serif); }
.play-bar .btn { flex-shrink: 0; padding: 8px 14px; font-size: 13px; border-color: rgba(255,255,255,.7); color: #fff; }
.play-bar .btn:hover { background: #fff; color: var(--ink); }
.catalog-equal .game-card .body p { min-height: 0; }
.detail-layout { display: grid; gap: 40px; }
@media (min-width: 960px) { .detail-layout { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); } }
.specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-top: 20px;
}
.spec span { display: block; color: var(--primary); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

/* Legal */
.legal-sheet {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 72px;
  font-size: 15.5px;
  line-height: 1.75;
}
.legal-sheet h1 { font-size: 32px; margin-bottom: 8px; }
.legal-sheet h2 {
  font-size: 17px;
  margin: 30px 0 8px;
  font-family: var(--font);
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.legal-sheet p { margin: 0 0 12px; color: var(--text); }
.legal-sheet ul { margin: 0 0 12px; padding-left: 20px; color: var(--text); }
.legal-sheet li { margin: 0 0 6px; }
.legal-sheet a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.legal-sheet code { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .92em; background: var(--bg-3); padding: 1px 5px; border-radius: 4px; }
.effective { color: var(--muted); margin-bottom: 24px; }

/* Forms */
.form { display: grid; gap: 16px; }
.form label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.form input, .form select, .form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--primary); outline-offset: 1px; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 700px) { .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.form-ok { display: none; color: var(--secondary); font-weight: 600; }

/* FAQ */
.faq details {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 14px 18px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); margin: 10px 0 0; }

/* Age gate — methodology 1 */
.ag-overlay{position:fixed;inset:0;z-index:9999;background:rgba(23,38,45,.94);padding:24px;display:flex;align-items:center;justify-content:center;font:15px/1.6 var(--font)}
.ag-box{background:var(--bg-2);border-radius:14px;max-width:420px;width:100%;padding:32px 28px;text-align:center;box-shadow:0 18px 50px rgba(0,0,0,.3)}
.ag-mark{display:inline-flex;align-items:center;justify-content:center;width:52px;height:52px;border:2px solid var(--ink);border-radius:50%;font-weight:700;font-size:17px;color:var(--ink);margin:0 0 16px}
.ag-q{font-family:var(--serif);font-size:22px;font-weight:600;letter-spacing:-.01em;margin:0 0 10px;color:var(--ink)}
.ag-note{font-size:13.5px;line-height:1.55;color:var(--muted);margin:0 0 22px}
.ag-actions{display:flex;flex-direction:column;gap:10px}
.ag-btn{display:block;width:100%;padding:13px 18px;border-radius:9px;font-size:15px;font-weight:600;border:1px solid transparent;cursor:pointer;font-family:inherit}
.ag-btn-yes{background:var(--primary);color:#fff}
.ag-btn-yes:hover{background:var(--primary-hover)}
.ag-btn-no{background:var(--bg-2);color:var(--muted);border-color:var(--border)}
.ag-btn-no:hover{border-color:var(--ink);color:var(--ink)}
.ag-legal{font-size:12px;color:var(--muted);margin:18px 0 0;line-height:1.5}
.ag-legal a{color:var(--text);text-decoration:underline}

/* Footer — methodology 1 */
.rg-footer{background:var(--bg-2);border-top:1px solid var(--border);padding:28px 24px;color:var(--text);font:14px/1.65 var(--font)}
.rg-inner{max-width:760px;margin:0 auto;text-align:center}
.rg-age{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border:2px solid var(--ink);border-radius:50%;font-weight:700;font-size:15px;margin:0 0 14px;color:var(--ink)}
.rg-title{font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin:0 0 10px}
.rg-body{margin:0 0 14px}
.rg-body strong{color:var(--ink)}
.rg-help{margin:0 0 14px}
.rg-help a,.rg-links a{color:var(--primary-hover);text-decoration:underline;text-underline-offset:2px}
.rg-links{font-size:13px;color:var(--muted);margin:0}
.rg-sep{color:rgba(23,38,45,.3);padding:0 6px}
.rg-legal{font-size:12px;color:var(--muted);margin:12px 0 0}

/* Age-restricted page — methodology 3 */
.ar-body{background:var(--bg)}
.ar-page{padding:56px 24px;min-height:100vh;display:flex;align-items:center;justify-content:center;font:15px/1.7 var(--font);color:var(--text)}
.ar-box{max-width:520px;width:100%;text-align:center}
.ar-mark{display:inline-flex;align-items:center;justify-content:center;width:56px;height:56px;border:2px solid var(--ink);border-radius:50%;font-weight:700;font-size:18px;color:var(--ink);margin:0 0 20px}
.ar-h{font-size:24px;margin:0 0 12px}
.ar-p{margin:0 0 14px}
.ar-p strong{color:var(--ink)}
.ar-parents{font-size:13.5px;color:var(--muted);margin:22px 0 0;padding-top:18px;border-top:1px solid var(--border)}
.ar-links{font-size:13px;color:var(--muted);margin:16px 0 0}
.ar-links a{color:var(--primary-hover);text-decoration:underline;text-underline-offset:2px}
.ar-sep{color:rgba(23,38,45,.3);padding:0 6px}
.ar-exit{display:inline-block;margin:20px 0 0;padding:11px 22px;border-radius:9px;background:var(--primary);color:#fff;font-size:14px;font-weight:600}
.ar-exit:hover{background:var(--primary-hover)}

/* App block — methodology 4 */
.app-block{background:var(--bg-2);border:1px solid var(--border);border-radius:14px;padding:26px 28px;font:15px/1.7 var(--font);color:var(--text);max-width:760px;margin:0 auto}
.app-kicker{font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:var(--accent);font-weight:700;margin:0 0 8px}
.app-h{font-family:var(--serif);font-size:24px;font-weight:600;letter-spacing:-.01em;color:var(--ink);margin:0 0 10px}
.app-p{margin:0 0 12px}
.app-feats{margin:0 0 16px;padding-left:20px}
.app-feats li{margin:0 0 5px}
.app-cta{display:inline-flex;align-items:center;gap:8px;padding:12px 22px;border-radius:9px;background:var(--ink);color:#fff;font-size:15px;font-weight:600}
.app-cta:hover{background:var(--primary-hover)}
.app-sub{font-size:12px;color:var(--muted);margin:8px 0 0}
.app-disc{font-size:13px;line-height:1.6;color:var(--muted);margin:18px 0 0;padding-top:16px;border-top:1px solid var(--border)}

.legacy-sub {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 18px;
  line-height: 1.4;
}
.social-line { color: var(--muted); font-size: 14px; margin: 0 0 20px; }
.frame.sanctuary { position: relative; }
.sanctuary-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: var(--bg-2);
  border: 1px solid rgba(217,95,59,.45);
  color: var(--accent);
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.guide-list { margin: 0 0 16px; padding-left: 18px; color: var(--muted); }
.guide-list li { margin: 0 0 8px; }
.share-row { margin-top: 24px; }
.share-row h3 { font-family: var(--font); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.share-links { display: flex; flex-wrap: wrap; gap: 10px; }
.share-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  font-size: 13px;
  font-weight: 600;
}
.share-links a:hover { border-color: var(--primary); color: var(--primary); }
.comments-block { background: var(--bg-3); }
.comments-wrap { max-width: 820px; }
.comments-empty {
  text-align: center;
  color: var(--muted);
  padding: 36px 16px;
  border: 1px dashed var(--border);
  background: var(--bg-2);
  margin-bottom: 24px;
}

/* Cookie banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 8000;
  max-width: 400px;
  width: calc(100% - 40px);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(23,38,45,.18);
}
.cookie-banner h3 { font-family: var(--font); font-size: 18px; color: var(--primary-hover); margin: 0 0 8px; }
.cookie-banner p { font-size: 14px; color: var(--muted); margin: 0 0 16px; }
.cookie-banner a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-modal, .cookie-overlay { display: none; }
.cookie-overlay { position: fixed; inset: 0; background: rgba(23,38,45,.6); z-index: 8001; }
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 92%);
  background: var(--bg-2);
  border: 1px solid var(--primary);
  border-radius: 6px;
  padding: 28px;
  z-index: 8002;
}
.pref-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; gap: 12px; cursor: pointer; }
.pref-row span { display: block; font-size: 12px; color: var(--muted); }
.pref-row input { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--primary); }

.is-hidden { display: none !important; }
.progress { height: 6px; background: var(--bg-3); border-radius: 99px; overflow: hidden; }
.progress > i { display: block; height: 100%; width: 0; background: var(--primary); }

.contact-block { color: var(--muted); }
.contact-block a { color: var(--primary); }

@media (max-width: 520px) {
  .section { padding: 52px 0; }
  .card { padding: 20px; }
  .bonus-box { padding: 24px 18px; }
  .app-block { padding: 22px 18px; }
  .hero-copy { padding: 44px 0; }
  .toolbar { align-items: stretch; }
  .search { width: 100%; }
}
@media (max-width: 360px) {
  .container { width: calc(100% - 28px); }
  .btn { padding: 11px 16px; }
}
