/* =========================================================
   SlotseBónus — Homepage
   Futurist gray-hat, white BG, mobile-first, CTA-focused
   ========================================================= */

:root {
  --bg: #FBFBFC;
  --surface: #FFFFFF;
  --surface-2: #F6F6F8;
  --bg-alt: #F4F4F6;

  --ink: #0A0A0F;
  --ink-2: #1F2027;
  --ink-3: #3D3F47;
  --mute: #6E7079;
  --mute-2: #9A9CA3;

  --hairline: #E8E8EC;
  --hairline-strong: #D0D0D6;

  --accent: #E63946;
  --accent-2: #C92C39;
  --accent-soft: #FCE9EB;
  --gold: #B58A18;
  --gold-soft: #FAF1D6;
  --green: #16A34A;
  --green-soft: #E7F6EC;

  --glow: 230, 57, 70;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;

  --font-display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  --wrap: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.mono { font-family: var(--font-mono); font-feature-settings: "ss02", "zero"; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute);
}
.eyebrow::before {
  content: ""; width: 14px; height: 1px; background: var(--accent);
}

/* ============== UTILITY BAR (top hairline strip) ============== */
.utility {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em;
}
.utility .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 8px; padding-bottom: 8px;
  gap: 16px; min-height: 32px;
}
.utility .u-left {
  display: inline-flex; align-items: center; gap: 14px; min-width: 0;
  overflow: hidden;
}
.utility .u-right { display: inline-flex; align-items: center; gap: 14px; }
.utility .live {
  display: inline-flex; align-items: center; gap: 8px;
  color: #FFFFFF; font-weight: 500;
}
.utility .live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(var(--glow),0.7);
  animation: pulse 2s infinite;
}
.utility .sep { width: 1px; height: 11px; background: rgba(255,255,255,0.15); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--glow),0.55); }
  70% { box-shadow: 0 0 0 7px rgba(var(--glow),0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--glow),0); }
}
@media (max-width: 720px) {
  .utility .hide-sm { display: none; }
}

/* ============== HEADER ============== */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251,251,252,0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  letter-spacing: -0.02em; color: var(--ink);
}
.logo::before {
  content: "";
  width: 26px; height: 26px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect width='32' height='32' rx='7' fill='%23ffffff' stroke='%23D0D0D6' stroke-width='1'/><path d='M16 7 Q14 11 11 13' stroke='%2316A34A' stroke-width='2' stroke-linecap='round' fill='none'/><path d='M16 7 Q18 11 21 13' stroke='%2316A34A' stroke-width='2' stroke-linecap='round' fill='none'/><circle cx='11' cy='20' r='5' fill='%23E63946'/><circle cx='21' cy='20' r='5' fill='%23C92C39'/></svg>") no-repeat center / contain;
  flex-shrink: 0;
}
.logo-accent { color: var(--accent); }

.nav-menu {
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-menu a {
  display: inline-flex; align-items: center;
  padding: 8px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav-menu a:hover { background: var(--surface-2); color: var(--ink); }
.nav-menu a.active { background: var(--ink); color: #fff; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 6px 14px -6px rgba(var(--glow), 0.6);
  transition: transform .12s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 20px -8px rgba(var(--glow), 0.7); }

.menu-btn {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--hairline-strong); border-radius: 10px;
  background: var(--surface);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.menu-btn span {
  width: 16px; height: 1.5px; background: var(--ink); position: relative;
}
.menu-btn span::before, .menu-btn span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--ink);
}
.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }

@media (max-width: 880px) {
  .nav-menu { display: none; }
  .menu-btn { display: inline-flex; }
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  background: var(--bg); z-index: 60;
  padding: 20px;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--hairline);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav ul a {
  display: block; padding: 16px 12px;
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--hairline);
}
.mobile-nav ul a.active { color: var(--accent); }
.close-btn {
  width: 40px; height: 40px; border: 1px solid var(--hairline-strong);
  background: var(--surface); border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink);
  font-size: 18px;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 56px 0 64px;
  background: var(--bg);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero::before {
  background-image:
    linear-gradient(rgba(10,10,15,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,15,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 600px at 70% 30%, black, transparent 70%);
}
.hero::after {
  background:
    radial-gradient(700px 480px at 85% 10%, rgba(var(--glow), 0.07), transparent 60%),
    radial-gradient(600px 400px at -5% 110%, rgba(var(--glow), 0.04), transparent 60%);
}
.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero { padding: 32px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 8px;
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; color: var(--ink-2);
  margin-bottom: 24px;
}
.hero-tag::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 0.95; letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero h1 .accent {
  position: relative;
  display: inline-block;
  color: var(--accent);
}
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.04em; height: 0.18em;
  background: var(--accent); opacity: 0.18;
  border-radius: 2px;
}

.hero-desc {
  font-size: clamp(15.5px, 1.4vw, 17.5px);
  color: var(--ink-3); max-width: 56ch;
  margin-bottom: 28px;
  text-wrap: pretty;
}

.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s, box-shadow .2s, background .15s, color .15s;
  min-height: 48px;
  white-space: nowrap;
}
.btn-dark {
  background: var(--ink); color: #fff;
  box-shadow: 0 6px 14px -6px rgba(10,10,15,0.4);
}
.btn-dark:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -10px rgba(10,10,15,0.55); }
.btn-outline {
  background: transparent; color: var(--ink);
  border-color: var(--hairline-strong);
}
.btn-outline:hover { background: var(--surface); border-color: var(--ink); }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 10px 22px -8px rgba(var(--glow), 0.6),
    0 4px 10px -4px rgba(var(--glow), 0.4);
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--accent-2);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 14px 28px -8px rgba(var(--glow), 0.7),
    0 6px 14px -4px rgba(var(--glow), 0.5);
}
.btn-block { width: 100%; }

/* Editorial micro-strip beneath CTAs */
.hero-trust {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px; color: var(--mute);
  letter-spacing: 0.02em;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust span::before {
  content: "✓"; color: var(--green); font-weight: 700;
}

/* ============== HERO FEATURED CARD (the eye-magnet) ============== */
.hero-featured {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 28px 26px 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 40px 80px -40px rgba(10,10,15,0.18),
    0 14px 30px -14px rgba(var(--glow), 0.22);
  overflow: hidden;
}
/* Gradient hairline border */
.hero-featured::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  padding: 1px; pointer-events: none;
  background: linear-gradient(160deg, rgba(var(--glow), 0.4), transparent 35%, transparent 65%, rgba(var(--glow), 0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  z-index: 0;
}
/* Corner ticks (engineering drawing feel) */
.hero-featured::after {
  content: ""; position: absolute; inset: 10px;
  background:
    linear-gradient(to right, var(--accent) 0 12px, transparent 12px) top left / 12px 1.5px no-repeat,
    linear-gradient(to bottom, var(--accent) 0 12px, transparent 12px) top left / 1.5px 12px no-repeat,
    linear-gradient(to left,  var(--accent) 0 12px, transparent 12px) top right / 12px 1.5px no-repeat,
    linear-gradient(to bottom, var(--accent) 0 12px, transparent 12px) top right / 1.5px 12px no-repeat,
    linear-gradient(to right, var(--accent) 0 12px, transparent 12px) bottom left / 12px 1.5px no-repeat,
    linear-gradient(to top,   var(--accent) 0 12px, transparent 12px) bottom left / 1.5px 12px no-repeat,
    linear-gradient(to left,  var(--accent) 0 12px, transparent 12px) bottom right / 12px 1.5px no-repeat,
    linear-gradient(to top,   var(--accent) 0 12px, transparent 12px) bottom right / 1.5px 12px no-repeat;
  pointer-events: none;
}
.hf-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px 5px 8px;
  background: var(--ink); color: #fff;
  border-radius: 999px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.hf-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(var(--glow), 0.8);
  animation: pulse 1.8s infinite;
}
.hf-header {
  display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 18px;
}
.hf-logo-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--ink); position: relative;
  overflow: hidden;
}
.hf-logo-wrap img { position: relative; z-index: 1; width: 80%; height: 80%; object-fit: contain; }
.hf-name {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  letter-spacing: -0.02em; color: var(--ink);
  line-height: 1.1;
}
.hf-rating {
  display: inline-flex; align-items: baseline; gap: 4px;
  margin-top: 4px;
  font-family: var(--font-mono);
}
.hf-rating-value {
  font-size: 16px; font-weight: 600; color: var(--ink);
}
.hf-rating-max { font-size: 11px; color: var(--mute); }

/* Bonus box — the chip */
.hf-bonus-box {
  position: relative;
  border: 1px dashed var(--hairline-strong);
  border-radius: 14px;
  padding: 16px 16px 14px;
  margin-bottom: 16px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(var(--glow), 0.05), transparent 70%),
    var(--surface);
}
.hf-bonus-label {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
}
.hf-bonus-value {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 30px); font-weight: 700;
  letter-spacing: -0.025em; color: var(--ink);
  line-height: 1.05;
  margin-bottom: 12px;
}
.hf-code {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  background: var(--ink); color: #fff;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  position: relative;
}
.hf-code::before {
  content: "CÓD ›"; padding-right: 8px; margin-right: 8px;
  border-right: 1px solid rgba(255,255,255,0.18);
  font-size: 9.5px; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6);
}

.hf-meta {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--mute);
  letter-spacing: 0.02em;
  text-align: center;
}

@media (max-width: 480px) {
  .hero-featured { padding: 22px 20px 20px; }
}

/* ============== STATS STRIP ============== */
.stats-strip {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
}
.stats-strip .wrap { padding-top: 0; padding-bottom: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  position: relative;
  padding: 28px 16px;
  border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 6px;
}
.stat:last-child { border-right: none; }
.stat::before {
  content: ""; position: absolute; top: 16px; left: 16px;
  width: 16px; height: 1px; background: var(--accent);
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px); font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.stat-accent { color: var(--accent); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mute);
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 14px; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--hairline); }
}

/* ============== SECTIONS ============== */
.section { padding: 88px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
@media (max-width: 720px) { .section { padding: 56px 0; } }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em; line-height: 1.05;
  color: var(--ink);
  text-align: center;
  margin: 12px auto 14px;
  max-width: 24ch;
  text-wrap: balance;
}
.section-subtitle {
  font-size: 16px; color: var(--ink-3);
  text-align: center; max-width: 62ch; margin: 0 auto 48px;
  text-wrap: pretty;
}
.section .eyebrow {
  text-align: center;
  justify-content: center;
}

/* ============== CASINO LIST (Top 10) ============== */
.casino-list {
  display: flex; flex-direction: column;
  gap: 12px;
  max-width: 1080px; margin: 0 auto;
}
.casino-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 320px;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 22px 24px;
  transition: border-color .15s, transform .15s, box-shadow .2s;
}
.casino-card:hover {
  border-color: var(--hairline-strong);
  box-shadow: 0 20px 40px -28px rgba(10,10,15,0.18);
  transform: translateY(-1px);
}
.casino-card.featured {
  border-color: rgba(var(--glow), 0.35);
  box-shadow:
    0 0 0 1px rgba(var(--glow), 0.1) inset,
    0 14px 30px -18px rgba(var(--glow), 0.22);
}
.casino-card.featured::before {
  content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 3px;
  background: var(--accent); border-radius: 0 3px 3px 0;
}

.cc-rank {
  font-family: var(--font-mono);
  font-size: 28px; font-weight: 700;
  color: var(--mute-2);
  text-align: center;
  letter-spacing: -0.02em;
}
.casino-card.featured .cc-rank { color: var(--accent); }

.cc-main { display: flex; gap: 18px; align-items: center; min-width: 0; }
.cc-logo {
  width: 88px; height: 88px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; color: var(--ink-3);
}
.cc-logo img { width: 86%; height: 86%; object-fit: contain; }
.cc-info { min-width: 0; }
.cc-name-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 4px;
}
.cc-name {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink); line-height: 1.1;
}
.cc-flag {
  display: inline-flex; align-items: center;
  padding: 3px 8px;
  background: var(--accent-soft); color: var(--accent-2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.cc-subtitle {
  font-size: 12.5px; color: var(--mute);
  margin-bottom: 8px;
}
.cc-features {
  display: flex; flex-wrap: wrap; gap: 6px 8px;
}
.cc-features li {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.02em;
  padding: 3px 8px;
  background: var(--surface-2);
  border-radius: 6px;
}

.cc-right {
  display: flex; flex-direction: column; gap: 10px;
  align-items: stretch;
}
.cc-rating-big {
  display: flex; align-items: baseline; gap: 4px; justify-content: center;
  font-family: var(--font-mono);
}
.cc-rating-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; color: var(--ink);
  letter-spacing: -0.02em;
}
.cc-rating-max { font-size: 11px; color: var(--mute); font-family: var(--font-mono); }

.cc-bonus {
  position: relative;
  padding: 12px 14px;
  border: 1px dashed var(--hairline-strong);
  border-radius: 12px;
  background: var(--surface);
  text-align: center;
}
.cc-bonus-exclusive {
  border-style: solid; border-color: rgba(var(--glow), 0.3);
  background:
    radial-gradient(100% 80% at 50% 0%, rgba(var(--glow), 0.06), transparent 70%),
    var(--surface);
}
.cc-bonus-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 4px;
}
.cc-bonus-exclusive .cc-bonus-label { color: var(--accent); }
.cc-bonus-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
}
.cc-bonus-code {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  background: var(--ink); color: #fff;
  border-radius: 6px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.06em;
}
.cc-bonus-sub {
  font-family: var(--font-mono);
  font-size: 10.5px; color: var(--mute);
  letter-spacing: 0.02em;
}

.cc-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 16px; border-radius: 10px;
  background: var(--ink); color: #fff;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform .12s, background .15s, box-shadow .2s;
  min-height: 48px;
}
.cc-cta:hover { background: var(--ink-2); transform: translateY(-1px); }
.cc-cta-exclusive {
  background: var(--accent); color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 8px 18px -8px rgba(var(--glow), 0.6);
}
.cc-cta-exclusive:hover { background: var(--accent-2); }

/* Mobile casino card — vertical stack with offer + CTA dominant */
@media (max-width: 880px) {
  .casino-card {
    grid-template-columns: 1fr;
    padding: 18px 18px 18px;
    gap: 14px;
    position: relative;
  }
  .casino-card.featured::before { width: 4px; top: 18px; bottom: 18px; }
  .cc-rank {
    position: absolute; top: 14px; right: 18px;
    font-size: 13px;
    color: var(--mute);
    letter-spacing: 0.04em;
    font-weight: 600;
  }
  .cc-rank::before {
    content: "#"; opacity: 0.5; margin-right: 1px;
  }
  .casino-card.featured .cc-rank { color: var(--accent); }
  .cc-main { gap: 12px; align-items: flex-start; }
  .cc-logo { width: 44px; height: 44px; }
  .cc-name { font-size: 17px; }
  .cc-name-row { padding-right: 44px; }  /* room for rank badge */
  .cc-right { gap: 12px; }
  .cc-rating-big {
    position: absolute; top: 14px; right: 48px;
    flex-direction: row;
  }
  .cc-rating-value { font-size: 16px; }
  .cc-rating-max { display: none; }
  .cc-cta { width: 100%; padding: 16px; font-size: 15px; min-height: 52px; }
}

/* ============== LISTICLE PREVIEW (Categories) ============== */
.listicle-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .listicle-preview-grid { grid-template-columns: 1fr; } }

.lp-card {
  display: flex; flex-direction: column;
  padding: 24px 22px 22px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  transition: transform .15s, border-color .15s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.lp-card::before {
  content: ""; position: absolute; top: 0; left: 22px; right: 22px; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0; transition: opacity .2s;
}
.lp-card:hover { border-color: var(--hairline-strong); transform: translateY(-2px); box-shadow: 0 24px 50px -28px rgba(10,10,15,0.2); }
.lp-card:hover::before { opacity: 1; }
.lp-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 14px;
}
.lp-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px; letter-spacing: -0.025em;
  line-height: 1.15; color: var(--ink);
  margin-bottom: 12px;
  text-wrap: balance;
}
.lp-desc {
  font-size: 14.5px; color: var(--ink-3); flex: 1;
  margin-bottom: 18px;
}
.lp-desc strong { color: var(--ink); font-weight: 600; }
.lp-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.005em;
}

/* ============== DETAILED ANALYSIS ============== */
.casino-details-list {
  display: flex; flex-direction: column;
  gap: 0;
}
.casino-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--ink);
}
.casino-detail:first-child { padding-top: 0; }
.casino-detail:last-child { padding-bottom: 0; border-bottom: none; }
@media (max-width: 720px) { .casino-detail { padding: 40px 0; } }
.casino-detail:nth-child(even) { direction: rtl; }
.casino-detail:nth-child(even) > * { direction: ltr; }
@media (max-width: 880px) {
  .casino-detail { grid-template-columns: 1fr; gap: 20px; direction: ltr; }
}

.cd-banner-wrap {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.cd-banner {
  position: relative;
  max-width: 300px;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 20px;
  overflow: visible;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 30px 60px rgba(10, 10, 15, 0.18)) drop-shadow(0 8px 20px rgba(10, 10, 15, 0.08));
}
.cd-banner.featured {
  background: transparent;
  border: none;
}
.cd-banner img {
  width: 100%; height: auto;
  display: block;
  border-radius: 18px;
}
/* Placeholder when image missing */
.cd-banner:not(.img-loaded):not(:has(img[src])) {
  min-height: 480px;
  background: var(--bg-alt);
  border: 1px solid var(--hairline);
  border-radius: 16px;
}
.cd-banner:not(.img-loaded):not(:has(img[src]))::after {
  content: "[ screenshot ]";
  font-family: var(--font-mono); font-size: 12px; color: var(--mute);
  position: absolute; bottom: 14px; left: 14px;
  letter-spacing: 0.06em;
}
.cd-caption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px; color: var(--mute);
  line-height: 1.5;
}

.cd-content { display: flex; flex-direction: column; gap: 16px; }
.cd-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--hairline);
}
.cd-header h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.03em; color: var(--ink);
  line-height: 1.05;
}
.cd-rating-num {
  font-family: var(--font-mono); font-weight: 600;
  padding: 5px 10px; background: var(--ink); color: #fff;
  border-radius: 6px; font-size: 12.5px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.cd-content p {
  font-size: 15.5px; color: var(--ink-3); line-height: 1.65;
  text-wrap: pretty;
}
.cd-content p strong { color: var(--ink); font-weight: 600; }
.cd-features-detailed {
  display: grid; gap: 8px;
}
.cd-features-detailed li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px; color: var(--ink-2);
}
.cd-features-detailed li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  top: 4px;
}
.cd-bonus-box {
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  font-size: 14px; color: var(--ink-2);
  line-height: 1.5;
}
.cd-bonus-box strong { color: var(--ink); font-weight: 600; }
.cd-code {
  display: inline-block;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  background: var(--ink); color: #fff;
  border-radius: 5px;
  margin: 0 2px;
}
.cd-content .btn { align-self: flex-start; }

/* ============== METHODOLOGY ============== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .method-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .method-grid { grid-template-columns: 1fr; } }

.method-item {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
}
.method-item::before {
  content: ""; position: absolute; top: 0; left: 0; width: 32px; height: 2px;
  background: var(--accent);
}
.method-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 18px;
}
.method-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 8px;
  line-height: 1.2;
}
.method-desc { font-size: 14px; color: var(--ink-3); line-height: 1.55; }

/* ============== FAQ ============== */
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item[open] { border-color: var(--hairline-strong); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 16.5px;
  letter-spacing: -0.015em;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 400;
  font-family: var(--font-mono);
  transition: transform .2s, background .15s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; background: var(--ink); color: #fff; }
.faq-item summary:hover { background: var(--surface-2); }
.faq-content {
  padding: 0 22px 20px;
  font-size: 14.5px; color: var(--ink-3); line-height: 1.65;
}
.faq-content strong { color: var(--ink); font-weight: 600; }

/* ============== FOOTER ============== */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
  border-top: 1px solid var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px; letter-spacing: -0.02em;
  color: #fff;
  display: inline-block; margin-bottom: 14px;
}
.footer p { font-size: 13.5px; line-height: 1.6; max-width: 32ch; }
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 14px; color: rgba(255,255,255,0.85);
  transition: color .15s;
}
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,0.5);
  font-family: var(--font-mono); letter-spacing: 0.02em;
}
.age-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 10px; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  color: rgba(255,255,255,0.7);
}

/* ============== MOBILE STICKY CTA ============== */
.sticky-cta {
  position: fixed;
  left: 10px; right: 10px; bottom: 10px;
  z-index: 50;
  display: none;
  align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #15151B 0%, #050509 100%);
  color: #fff;
  border-radius: 14px;
  box-shadow:
    0 20px 40px -18px rgba(10,10,15,0.55),
    0 8px 18px -6px rgba(var(--glow), 0.4),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.6,0,.2,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.sticky-cta .sc-logo {
  width: 38px; height: 38px; border-radius: 8px;
  background: #fff;
  padding: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}
.sticky-cta .sc-logo img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.sticky-cta .sc-meta { display: flex; flex-direction: column; min-width: 0; }
.sticky-cta .sc-t {
  font-family: var(--font-display);
  font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sticky-cta .sc-s {
  font-family: var(--font-mono);
  font-size: 10.5px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.sticky-cta .sc-code {
  background: rgba(255,255,255,0.1); padding: 1px 6px; border-radius: 4px;
  color: #fff;
}
.sticky-cta a.sc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 14px;
  background: var(--accent); color: #fff;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 13.5px; font-weight: 600;
  letter-spacing: -0.005em;
  min-height: 44px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 8px 16px -6px rgba(var(--glow), 0.7);
}
@media (min-width: 720px) {
  .sticky-cta { display: none !important; }
}
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  body.has-sticky-cta { padding-bottom: 76px; }
}

/* Toast on code copy */
.toast {
  position: fixed; left: 50%; bottom: 90px; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em;
  z-index: 100;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  box-shadow: 0 12px 30px -12px rgba(10,10,15,0.6);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (min-width: 721px) {
  .toast { bottom: 28px; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* No scroll when mobile nav open */
body.no-scroll { overflow: hidden; }


/* ===== IMG fallback letters ===== */
/* Hide imgs that haven't had a valid src set (preview / pre-load state) */
.cc-logo img:not([src]), .cc-logo img[src=""],
.hf-logo-wrap img:not([src]), .hf-logo-wrap img[src=""],
.cd-banner img:not([src]), .cd-banner img[src=""] { display: none; }

.cc-logo { position: relative; }
.cc-logo[data-letter]::before {
  content: attr(data-letter);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; color: var(--ink-3);
  letter-spacing: -0.02em;
}
.cc-logo img { position: relative; z-index: 1; }
.cc-logo.img-loaded::before { display: none; }

.hf-logo-wrap { position: relative; }
.hf-logo-wrap[data-letter]::before {
  content: attr(data-letter);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 24px; color: var(--ink);
  letter-spacing: -0.02em;
}
.hf-logo-wrap img { position: relative; z-index: 1; }
.hf-logo-wrap.img-loaded::before { display: none; }

.cd-banner img { opacity: 0; transition: opacity .25s; }
.cd-banner.img-loaded img { opacity: 1; }
.cd-banner.img-loaded::after { display: none; }
