/* ============================================
   REEFSPINS REVIEW — Design System
   ============================================ */

:root {
  --c-abyss: #04222d;
  --c-deep: #073142;
  --c-teal: #0d4a5c;
  --c-teal-mid: #1a6b80;
  --c-mist: #1a2a35;
  --c-foam: #0f1e28;
  --c-cream: #010f16;
  --c-paper: #162129;
  --c-ink: #ffffff;
  --c-body: #c8d0d8;
  --c-muted: #7a8896;
  --c-line: rgba(255, 255, 255, 0.08);
  --c-coral: #ff8a3d;
  --c-coral-deep: #f56b1a;
  --c-gold: #f5b042;
  --c-success: #2ea36e;
  --c-danger: #d24545;

  --f-head: 'Manrope', 'Inter', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px;
  --s-8: 64px; --s-9: 96px;

  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px;

  --sh-sm: 0 2px 6px rgba(0, 0, 0, .3);
  --sh-md: 0 8px 24px rgba(0, 0, 0, .4);
  --sh-lg: 0 18px 48px rgba(0, 0, 0, .5);
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: var(--f-body);
  color: var(--c-body);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  font-size: 16px; line-height: 1.65;
}
a { color: var(--c-teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-coral-deep); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--f-head); color: var(--c-ink);
  font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.15; margin: 0 0 var(--s-4) 0;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 var(--s-4) 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--s-5); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: rgba(1, 18, 25, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: var(--s-3); text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.brand-mark img {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.brand-name { font-family: var(--f-head); font-weight: 800; font-size: 1.2rem; color: #fff; letter-spacing: -0.02em; }
.brand-name span { color: var(--c-coral); }
.brand-name .brand-version { font-size: 1em; color: var(--c-coral); font-weight: 800; margin-left: 4px; }
.brand-tag { display: none; }
.header-right { display: flex; align-items: center; gap: var(--s-3); }
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  transition: border-color .2s ease;
  flex-shrink: 0;
}
.mobile-menu-toggle:hover { border-color: rgba(255,255,255,0.25); }
.mobile-menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(1, 15, 22, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: var(--s-3) var(--s-5);
  z-index: 60;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 14px 12px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-menu a.mobile-menu-cta {
  margin-top: 8px;
  background: var(--c-coral);
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.mobile-menu a.mobile-menu-cta:hover { background: var(--c-coral-deep); }
.site-header { position: sticky; }
.nav { display: flex; align-items: center; gap: var(--s-2); }
.nav a {
  padding: 10px 16px; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
  transition: all .2s ease;
}
.nav a:hover { background: rgba(255,255,255,0.14); color: #fff; }
.nav a.active { background: transparent; color: #fff; }
.header-signup {
  display: inline-flex; align-items: center;
  padding: 10px 22px;
  background: var(--c-coral); color: #fff;
  border-radius: 999px;
  font-family: var(--f-head); font-weight: 700; font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 138, 61, 0.3);
  transition: all .2s ease;
}
.header-signup:hover { background: var(--c-coral-deep); color: #fff; transform: translateY(-1px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background:
    linear-gradient(180deg, rgba(4, 34, 45, 0.35) 0%, rgba(4, 34, 45, 0.15) 50%, rgba(4, 34, 45, 0.55) 100%),
    url("hero-bg.webp") center 30% / cover no-repeat,
    linear-gradient(180deg, #052b38 0%, #04222d 100%);
  color: #ffffff;
  padding: calc(var(--s-9) + 72px) 0 var(--s-9);
  position: relative; overflow: hidden;
  min-height: 792px;
  display: flex; align-items: center;
  margin-top: -72px;
}
.hero .container { position: relative; z-index: 1; width: 100%; min-width: 0; }
.hero h1, .hero .hero-lead, .hero .hero-eyebrow {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.3);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 6px 14px;
  background: rgba(4, 34, 45, 0.5);
  border: 1px solid rgba(255, 138, 61, 0.4);
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-gold); margin-bottom: var(--s-5);
}
.hero-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--c-coral); box-shadow: 0 0 12px var(--c-coral); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.5vw, 4rem); max-width: 800px; margin-bottom: var(--s-5); min-width: 0; }
.hero h1 span { color: var(--c-coral); }
.hero-lead { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 640px; line-height: 1.6; margin-bottom: var(--s-7); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: var(--s-7); align-items: center; min-width: 0; }
.hero-grid > * { min-width: 0; }
.hero-card {
  background: #000e15;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.hero-card-rating { display: flex; align-items: center; gap: var(--s-4); margin-bottom: var(--s-5); }
.hero-card-score { font-family: var(--f-head); font-size: 4rem; font-weight: 800; color: var(--c-coral); line-height: 1; letter-spacing: -0.04em; }
.hero-card-score sup { font-size: 1.2rem; color: rgba(255,255,255,0.6); font-weight: 700; }
.hero-card-stars { color: var(--c-gold); font-size: 1.3rem; letter-spacing: 2px; }
.hero-card-stars .dim { color: rgba(255,255,255,0.25); }
.hero-card-meta { display: flex; gap: var(--s-5); font-size: 0.85rem; color: rgba(255,255,255,0.7); border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--s-4); margin-top: var(--s-4); }
.hero-card-meta strong { color: #ffffff; display: block; font-size: 1.15rem; font-family: var(--f-head); font-weight: 800; }
.hero-card-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; width: 100%;
  margin-top: var(--s-4); padding: 13px 22px;
  background: rgba(28, 133, 68, 0.7);
  color: #fff; border-radius: 999px;
  font-family: var(--f-head); font-weight: 700; font-size: 0.96rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all .2s ease;
}
.hero-card-cta:hover { background: rgba(28, 133, 68, 0.85); transform: translateY(-1px); }
.hero-card-cta-arrow { font-size: 1.1rem; line-height: 1; font-weight: 600; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-2); padding: 14px 28px; border-radius: 999px;
  font-family: var(--f-head); font-weight: 700; font-size: 0.98rem;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .2s ease; white-space: nowrap;
}
.btn-primary { background: var(--c-coral); color: #fff; box-shadow: 0 8px 24px rgba(255, 138, 61, 0.35); }
.btn-primary:hover { background: var(--c-coral-deep); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-dark { background: var(--c-abyss); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.btn-dark:hover { background: var(--c-teal); color: #fff; }
.btn-group { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* ============================================
   SECTIONS
   ============================================ */
section { padding: var(--s-9) 0; }
section.tight { padding: var(--s-7) 0; }
section.section-paper { background: #162129; }
.section-eyebrow { display: inline-block; font-family: var(--f-head); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-coral); margin-bottom: var(--s-3); }
.section-title { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: var(--s-3); }
.section-lead { font-size: 1.08rem; color: var(--c-muted); max-width: 720px; margin-bottom: var(--s-7); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto var(--s-7); }
.section-head .section-lead { margin: 0 auto; }

/* ============================================
   FACTS PANEL (overlapping hero)
   ============================================ */
.facts { background: transparent; position: relative; z-index: 2; margin-top: -60px; padding: 0 0 var(--s-6); }
.trust-badges { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: var(--s-5); margin-bottom: var(--s-4); }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.9); text-shadow: 0 1px 6px rgba(0,0,0,0.65); }
.trust-badge-icon { display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: #1c8544; color: #fff; font-size: 0.65rem; font-weight: 800; flex-shrink: 0; }
.facts-panel { background: #162129; border: 1px solid rgba(255,255,255,0.06); border-radius: var(--r-lg); padding: var(--s-5) var(--s-4); display: grid; grid-template-columns: repeat(4, 1fr); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.fact { padding: var(--s-3) var(--s-4); text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.fact:last-child { border-right: none; }
.fact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: var(--s-2); }
.fact-value { font-family: var(--f-head); font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1.1; }
.fact-value small { display: block; font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.55); margin-top: 6px; letter-spacing: 0; }

/* ============================================
   PROS / CONS
   ============================================ */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
.pc-card { background: var(--c-paper); border-radius: var(--r-lg); padding: var(--s-6); border: 1px solid var(--c-line); box-shadow: var(--sh-sm); }
.pc-card h3 { display: flex; align-items: center; gap: var(--s-2); font-size: 1.3rem; margin-bottom: var(--s-4); }
.pc-card.pros h3 { color: var(--c-success); }
.pc-card.cons h3 { color: var(--c-danger); }
.pc-list { list-style: none; padding: 0; margin: 0; }
.pc-list li { position: relative; padding: var(--s-3) 0 var(--s-3) var(--s-6); border-bottom: 1px dashed var(--c-line); font-size: 0.95rem; }
.pc-list li:last-child { border-bottom: none; }
.pc-list li::before { position: absolute; left: 0; top: 14px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 0.7rem; font-weight: 800; color: #fff; }
.pc-card.pros .pc-list li::before { content: "+"; background: var(--c-success); }
.pc-card.cons .pc-list li::before { content: "−"; background: var(--c-danger); }

/* ============================================
   FEATURE GRID
   ============================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.feature { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: var(--s-6); transition: all .2s ease; display: flex; flex-direction: column; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--c-mist); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--c-foam), var(--c-mist)); display: grid; place-items: center; color: var(--c-teal); margin-bottom: var(--s-4); }
.feature-icon svg { width: 26px; height: 26px; display: block; }
.feature h3 { font-size: 1.15rem; margin-bottom: var(--s-2); }
.feature p { color: var(--c-muted); font-size: 0.95rem; margin: 0; flex: 1; }

/* ============================================
   BONUS CARDS
   ============================================ */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.bonus { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: var(--s-6); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.bonus::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--c-coral), var(--c-gold)); }
.bonus.featured { background: linear-gradient(180deg, var(--c-abyss) 0%, var(--c-deep) 100%); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.bonus.featured h3, .bonus.featured .bonus-amount { color: #fff; }
.bonus.featured p, .bonus.featured .bonus-foot { color: rgba(255,255,255,0.75); }
.bonus-tag { display: inline-block; padding: 4px 10px; background: var(--c-foam); color: var(--c-teal); border-radius: 999px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--s-3); align-self: flex-start; }
.bonus.featured .bonus-tag { background: var(--c-coral); color: #fff; }
.bonus-amount { font-family: var(--f-head); font-size: 2.2rem; font-weight: 800; color: var(--c-coral); letter-spacing: -0.03em; line-height: 1; margin-bottom: var(--s-3); }
.bonus h3 { font-size: 1.2rem; margin-bottom: var(--s-3); }
.bonus p { font-size: 0.95rem; color: var(--c-muted); margin-bottom: var(--s-4); flex: 1; }
.bonus-foot { border-top: 1px solid var(--c-line); padding-top: var(--s-3); font-size: 0.82rem; color: var(--c-muted); }
.bonus.featured .bonus-foot { border-top-color: rgba(255,255,255,0.15); }

/* ============================================
   STEPS
   ============================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); counter-reset: step; }
.step { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: var(--s-5); position: relative; counter-increment: step; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--c-coral); color: #fff; display: grid; place-items: center; font-family: var(--f-head); font-weight: 800; font-size: 1rem; margin-bottom: var(--s-3); }
.step h3 { font-size: 1.05rem; margin-bottom: var(--s-2); }
.step p { font-size: 0.92rem; color: var(--c-muted); margin: 0; }

/* ============================================
   GAMES
   ============================================ */
.games-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.game { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-md); padding: var(--s-5); text-align: center; transition: all .2s ease; }
.game:hover { transform: translateY(-2px); border-color: var(--c-coral); box-shadow: var(--sh-md); }
.game-cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-coral); font-weight: 700; margin-bottom: var(--s-2); }
.game h4 { font-size: 1.05rem; margin-bottom: var(--s-2); }
.game p { font-size: 0.85rem; color: var(--c-muted); margin: 0; }

/* ============================================
   PAYMENTS
   ============================================ */
.payments { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; }
.pay { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 14px 22px; font-family: var(--f-head); font-weight: 700; font-size: 0.92rem; color: var(--c-ink); display: flex; align-items: center; gap: 8px; min-width: 130px; justify-content: center; }
.pay::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c-coral); }

/* ============================================
   FAQ
   ============================================ */
.faq { max-width: 880px; margin: 0 auto; }
.faq details { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-md); margin-bottom: var(--s-3); padding: var(--s-5); transition: all .2s ease; }
.faq details[open] { border-color: var(--c-coral); box-shadow: var(--sh-sm); }
.faq summary { cursor: pointer; font-family: var(--f-head); font-weight: 700; font-size: 1.05rem; color: var(--c-ink); list-style: none; display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; width: 30px; height: 30px; border-radius: 50%; background: var(--c-foam); color: var(--c-teal); display: grid; place-items: center; font-size: 1.3rem; font-weight: 700; flex-shrink: 0; transition: all .2s ease; }
.faq details[open] summary::after { content: "−"; background: var(--c-coral); color: #fff; transform: rotate(180deg); }
.faq details > *:not(summary) { margin-top: var(--s-3); }
.faq details p { color: var(--c-muted); margin: 0; }

/* ============================================
   VERDICT
   ============================================ */
.verdict-section { background: #010f16; padding: var(--s-9) 0; }
.verdict {
  background: linear-gradient(135deg, var(--c-abyss) 0%, var(--c-teal) 100%);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  color: #fff;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s-7);
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.verdict::after {
  content: "";
  position: absolute;
  top: -20px;
  right: 40px;
  width: 300px;
  height: 220px;
  background: url("turtle.webp") center / contain no-repeat;
  opacity: 0.9;
  pointer-events: none;
  transform: rotate(-6deg);
  z-index: 0;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}
.verdict::before { content: ""; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255, 138, 61, 0.25), transparent 60%); pointer-events: none; }
.verdict-content { position: relative; z-index: 1; }
.verdict h2 { color: #fff; font-size: 2.2rem; }
.verdict p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 540px; }
.verdict-side { position: relative; z-index: 1; text-align: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r-lg); padding: var(--s-6); }
.verdict-score { font-family: var(--f-head); font-size: 4rem; font-weight: 800; color: var(--c-coral); line-height: 1; letter-spacing: -0.04em; }
.verdict-score sup { font-size: 1.2rem; color: rgba(255,255,255,0.5); }
.verdict-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); margin-top: var(--s-3); }
.verdict-turtle {
  display: block;
  width: 200px;
  height: auto;
  margin: 24px 0 0 auto;
  opacity: 0.9;
  transform: rotate(-10deg);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
  display: none;
}

/* ============================================
   EXCLUSIVE BONUSES + POPULAR GAMES
   ============================================ */
.exclusive-section { padding: var(--s-9) 0; background: var(--c-cream); }
.exclusive-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s-6); align-items: start; }
.exclusive-title { font-size: 1.7rem; font-weight: 800; color: #fff; margin-bottom: var(--s-5); line-height: 1.2; letter-spacing: -0.02em; }
.bonus-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); margin-bottom: var(--s-4); }
.bonus-card { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-md); padding: var(--s-5) var(--s-4); position: relative; min-height: 240px; display: flex; flex-direction: column; transition: all .2s ease; }
.bonus-card:hover { transform: translateY(-2px); border-color: var(--c-coral); }
.bonus-card-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-coral); font-weight: 700; margin-bottom: var(--s-3); }
.bonus-card-amount { font-family: var(--f-head); font-size: 1.85rem; font-weight: 800; color: #fff; margin-bottom: var(--s-3); line-height: 1.05; letter-spacing: -0.02em; }
.bonus-card-detail { font-size: 0.92rem; color: var(--c-muted); line-height: 1.4; }
.bonus-card-detail--accent { color: var(--c-coral); font-weight: 600; }
.bonus-card-foot { font-size: 0.85rem; color: var(--c-muted); margin-top: auto; padding-top: var(--s-3); border-top: 1px solid var(--c-line); }
.bonus-card-icon { position: absolute; bottom: var(--s-4); right: var(--s-4); font-size: 1.8rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.view-all-btn { display: inline-flex; align-items: center; padding: 12px 26px; border: 1.5px solid var(--c-success); color: var(--c-success); border-radius: 999px; font-family: var(--f-head); font-weight: 700; font-size: 0.92rem; text-decoration: none; transition: all .2s ease; background: transparent; }
.view-all-btn:hover { background: var(--c-success); color: #fff; }
.games-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--s-4); }
.games-header .exclusive-title { margin-bottom: 0; }
.view-all-games { color: var(--c-success); font-size: 0.9rem; font-weight: 700; text-decoration: none; padding: 7px 16px; border: 1px solid var(--c-success); border-radius: 999px; transition: all .2s ease; }
.view-all-games:hover { background: var(--c-success); color: #fff; }
.games-image-wrap { width: 100%; max-width: 540px; margin: 0 auto; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--c-line); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.games-image-wrap img { width: 100%; height: auto; display: block; transition: transform .3s ease; }
.games-image-wrap:hover img { transform: scale(1.02); }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-md); padding: var(--s-5) var(--s-4); display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); margin-top: calc(var(--s-6) + 40px); }
.trust-item { display: flex; align-items: flex-start; gap: var(--s-3); padding: 0 var(--s-3); border-right: 1px solid var(--c-line); }
.trust-item:last-child { border-right: none; }
.trust-item-icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: #1c8544; color: #fff; display: grid; place-items: center; box-shadow: 0 4px 10px rgba(28, 133, 68, 0.3); }
.trust-item-text { min-width: 0; }
.trust-item-title { font-family: var(--f-head); font-weight: 700; font-size: 0.95rem; color: #fff; margin-bottom: 4px; line-height: 1.2; }
.trust-item-desc { font-size: 0.82rem; color: var(--c-muted); line-height: 1.4; }

/* ============================================
   CTA / NOTE / FOOTER
   ============================================ */
.cta { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: var(--s-7); text-align: center; }
.cta h2 { font-size: 1.9rem; margin-bottom: var(--s-3); }
.cta p { color: var(--c-muted); max-width: 600px; margin: 0 auto var(--s-5); }
.cta .btn-group { justify-content: center; }
.note { background: rgba(255, 138, 61, 0.08); border-left: 3px solid var(--c-coral); border-radius: var(--r-sm); padding: var(--s-4) var(--s-5); margin: var(--s-5) 0; font-size: 0.95rem; color: var(--c-body); }
.note strong { color: #fff; font-family: var(--f-head); }
.note.warn { background: rgba(210, 69, 69, 0.1); border-left-color: var(--c-danger); }
.note.success { background: rgba(46, 163, 110, 0.1); border-left-color: var(--c-success); }
.terms-table { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--r-lg); overflow: hidden; }
.terms-row { display: grid; grid-template-columns: 1fr 2fr; border-bottom: 1px solid var(--c-line); }
.terms-row:last-child { border-bottom: none; }
.terms-row > div { padding: var(--s-4) var(--s-5); }
.terms-row .term-label { font-family: var(--f-head); font-weight: 700; color: var(--c-ink); background: var(--c-foam); border-right: 1px solid var(--c-line); }
.terms-row .term-value { color: var(--c-body); }
.site-footer { background: var(--c-abyss); color: rgba(255,255,255,0.75); padding: var(--s-8) 0 var(--s-5); margin-top: var(--s-9); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-6); margin-bottom: var(--s-7); }
.footer-col h4 { color: var(--c-paper); font-size: 0.95rem; margin-bottom: var(--s-3); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: var(--s-2); }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-col a:hover { color: var(--c-coral); }
.footer-about { font-size: 0.92rem; line-height: 1.6; max-width: 360px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--s-5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3); font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.disclaimer { background: rgba(0,0,0,0.2); border-radius: var(--r-md); padding: var(--s-4) var(--s-5); font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.55); margin-bottom: var(--s-5); }

/* ============================================
   LOGIN MOCK
   ============================================ */
.login-mock { background: linear-gradient(180deg, var(--c-paper), var(--c-foam)); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: var(--s-6); box-shadow: var(--sh-md); max-width: 420px; margin: 0 auto; }
.login-mock-head { text-align: center; margin-bottom: var(--s-5); }
.login-mock-head .brand-mark { margin: 0 auto var(--s-3); width: 56px; height: 56px; font-size: 1.4rem; }
.login-mock-turtle { display: block; margin: 0 auto var(--s-3); width: 140px; height: auto; filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5)); }
.login-info { list-style: none; padding: 0; margin: 0 0 var(--s-4) 0; text-align: left; }
.login-info li { padding: 10px 0; border-bottom: 1px dashed var(--c-line); font-size: 0.9rem; color: var(--c-muted); }
.login-info li:last-child { border-bottom: none; }
.login-info strong { color: #ffffff; font-family: var(--f-head); }
.login-mock h3 { font-size: 1.3rem; margin-bottom: var(--s-2); }
.login-mock-head p { color: var(--c-muted); font-size: 0.9rem; }
.field { margin-bottom: var(--s-4); }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--c-ink); margin-bottom: 6px; }
.field input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--c-line); border-radius: var(--r-sm); font-family: var(--f-body); font-size: 0.95rem; background: var(--c-paper); transition: border .2s ease; }
.field input:focus { outline: none; border-color: var(--c-coral); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .facts-panel { grid-template-columns: repeat(2, 1fr); }
  .facts-panel .fact:nth-child(2) { border-right: none; }
  .facts-panel .fact:nth-child(1), .facts-panel .fact:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: var(--s-4); margin-bottom: var(--s-3); }
  .feature-grid, .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .proscons { grid-template-columns: 1fr; }
  .verdict { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .terms-row { grid-template-columns: 1fr; }
  .terms-row .term-label { border-right: none; border-bottom: 1px solid var(--c-line); }
  .nav a { padding: 8px 12px; font-size: 0.85rem; }
  .exclusive-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .bonus-cards { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--c-line); padding-bottom: var(--s-4); margin-bottom: var(--s-3); }
}
@media (max-width: 640px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  .container { padding: 0 var(--s-5); }
  .site-header .container { height: 60px; gap: var(--s-2); }
  .nav { display: none; }
  .header-signup { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-menu { display: none; }
  .mobile-menu.is-open { display: flex; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-mark img { width: 36px; height: 36px; }
  .brand-name { font-size: 1rem; }
  .brand-name .brand-version { margin-left: 3px; }
  .feature-grid, .bonus-grid, .games-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { margin-top: -60px; padding: 100px 0 var(--s-7); min-height: auto; display: block; }
  .hero h1, .hero-lead { max-width: calc(100vw - 48px); }
  .hero h1 { font-size: clamp(1.7rem, 6vw, 2.1rem); word-wrap: break-word; overflow-wrap: anywhere; width: 100%; box-sizing: border-box; line-height: 1.2; display: block; }
  .hero-lead { font-size: 0.9rem; word-wrap: break-word; overflow-wrap: anywhere; width: 100%; box-sizing: border-box; line-height: 1.55; display: block; }
  .hero-card { padding: var(--s-4); }
  .hero-card-rating { flex-wrap: wrap; gap: var(--s-3); }
  .hero-card-score { font-size: 3rem; }
  .hero-card-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); width: 100%; }
  .hero-card-meta > div { text-align: left; padding: 0; }
  .btn-group { flex-direction: column; width: 100%; }
  .btn-group .btn { width: 100%; }
  .facts { margin-top: -40px; }
  .facts-panel { grid-template-columns: 1fr; }
  .facts-panel .fact { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: var(--s-3) 0; }
  .facts-panel .fact:last-child { border-bottom: none; }
  .trust-badges { gap: var(--s-3); justify-content: flex-start; }
  .trust-badge { font-size: 0.78rem; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--c-line); padding: 0 0 var(--s-4); }
  .trust-item:last-child { border-bottom: none; padding-bottom: 0; }
  .games-grid-popular { grid-template-columns: repeat(2, 1fr); }
  .bonus-card { min-height: 170px; }
  section { padding: var(--s-7) 0; }
  .section-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .section-lead { font-size: 0.98rem; }
  .verdict h2 { font-size: 1.6rem; }
  .verdict-side { padding: var(--s-4); }
  .verdict-side-score { font-size: 3.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
