@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@400;500;600;700&family=Mona+Sans:wght@400;500;600;700&display=swap');
/* ==== base (noir structural) ==== */
/* Fonts loaded via non-blocking <link> in <head> (no render-blocking @import) */

/* =====================================================================
   CASINO NOIR  —  premium dark / gold editorial theme
   Display: Fraunces (high-contrast serif)   Body: Hanken Grotesk
   ===================================================================== */

/* ===== CSS VARIABLES (these win the cascade — recolor everything) ===== */
:root{
  --primary:#c9a24b;            /* gold */
  --primary-dark:#a9813a;
  --accent:#e6c879;             /* light champagne gold (used by h2::after, scrollbar) */
  --gold:#c9a24b;
  --gold-bright:#f0d68f;
  --emerald:#3fae7a;            /* "verified / win" green accent */

  --bg:#0b0e0d;                 /* near-black, faint green-tint */
  --bg-soft:#11150f;            /* lifted panel */
  --bg-panel:#14180f;
  --fg:#ece6d8;                 /* warm ivory */
  --fg-muted:#938d7e;
  --fg-dim:#6f6a5e;
  --border:rgba(201,162,75,.18);/* gold hairline */
  --border-soft:rgba(236,230,216,.08);
  --card-bg:#13160f;
  --card-bg-hi:#181c12;
  --card-shadow:0 1px 0 rgba(255,255,255,.03),0 18px 40px -20px rgba(0,0,0,.8);

  --radius:18px;
  --radius-sm:12px;
  --btn-radius:10px;
  --h1-weight:600;

  --font:"Hanken Grotesk",system-ui,-apple-system,sans-serif;
  --font-display:"Fraunces","Hanken Grotesk",Georgia,serif;
  --shadow-btn:0 10px 24px -10px rgba(201,162,75,.55);

  /* extra vars used by the legacy obfuscated-class rules (secondary pages) — mapped to noir */
  --primary-600:#a9813a;
  --primary-tint:rgba(201,162,75,.12);
  --muted:#938d7e;
  --border-strong:rgba(201,162,75,.32);
  --success:#3fae7a;
  --danger:#c0533f;
  --card-shadow-hover:0 26px 50px -24px rgba(0,0,0,.9);
}

/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box}
body,html{margin:0;padding:0}
body{
  font-family:var(--font);
  color:var(--fg);
  background:var(--bg);
  line-height:1.65;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
/* atmospheric gold glows fixed behind everything (own layer, no conflict) */
body::before{
  content:"";
  position:fixed;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(60vw 50vh at 78% -8%,rgba(201,162,75,.10),transparent 60%),
    radial-gradient(50vw 50vh at -10% 12%,rgba(63,174,122,.06),transparent 55%),
    radial-gradient(80vw 60vh at 50% 120%,rgba(201,162,75,.07),transparent 60%);
}
body>*{position:relative;z-index:1}

a{color:var(--primary);text-decoration:none;transition:color .18s}
a:hover{color:var(--gold-bright)}
img{max-width:100%;display:block}

h1,h2,h3,h4{font-family:var(--font-display);color:var(--fg);line-height:1.08;letter-spacing:-.015em;font-optical-sizing:auto}
h2{font-size:clamp(26px,3.4vw,40px);font-weight:600;margin:0 0 14px}
h3{font-size:19px;font-weight:600;margin:0 0 8px}
p{margin:0 0 16px}
ul,ol{margin:0;padding:0}
::selection{background:rgba(201,162,75,.3);color:#fff}

/* ===== SKIP LINK ===== */
.skip-link{position:absolute;left:0;top:0;transform:translateY(-120%);background:var(--primary);color:#0b0e0d;padding:10px 16px;border-radius:0 0 8px 0;font-weight:700;z-index:400;transition:transform .15s}
.skip-link:focus{transform:translateY(0);color:#0b0e0d}

/* ===== CONTAINER ===== */
.container-sc9ce3{max-width:1180px;margin:0 auto;padding:0 28px}

/* ===== NAV / HEADER ===== */
header.nav-sc9ce3{
  background:rgba(10,13,11,.72)!important;
  -webkit-backdrop-filter:saturate(140%) blur(14px);
  backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid var(--border);
}
header.nav-sc9ce3 .container-sc9ce3{display:flex;align-items:center;justify-content:space-between;gap:24px;padding-top:16px;padding-bottom:16px}
.nav-sticky{position:sticky;top:0;z-index:100}
.brand-sc9ce3{display:inline-flex;align-items:center;gap:11px;font-family:var(--font-display);font-weight:700;color:var(--fg);text-decoration:none}
.brand-sc9ce3:hover{color:var(--gold-bright)}
.logo{display:inline-flex;align-items:center;gap:11px}
.logo img,.logo svg{filter:drop-shadow(0 2px 6px rgba(201,162,75,.4))}
.logo-text-sc9ce3{font-family:var(--font-display);font-size:19px;font-weight:700;color:var(--fg);letter-spacing:-.01em}
.logo-text-sc9ce3::first-letter{color:var(--gold)}
/* recolor the legacy blue-heart logo until the gold emblem is injected (and on no-JS pages) */
.logo svg:not([data-gold]) rect{fill:#14180f}
.logo svg:not([data-gold]) path{fill:var(--gold)}
header.nav-sc9ce3 nav{display:flex;gap:26px;flex-wrap:wrap;align-items:center}
header.nav-sc9ce3 nav a{position:relative;color:rgba(236,230,216,.78);font-weight:500;font-size:14.5px;letter-spacing:.01em;padding:6px 0}
header.nav-sc9ce3 nav a::after{content:"";position:absolute;left:0;bottom:0;width:0;height:1.5px;background:var(--gold);transition:width .22s}
header.nav-sc9ce3 nav a:hover{color:var(--fg)}
header.nav-sc9ce3 nav a:hover::after{width:100%}

/* kill inherited gradient bleed on section headers */
header.section-head-sc9ce3{background:none!important;border:none;padding:0}

/* ===== HERO (compact) ===== */
.hero-minimal{padding:24px 0 18px!important;position:relative;overflow:hidden}
.hero-minimal-inner{position:relative;max-width:880px}
.hero-minimal-rule{width:54px;height:3px;background:linear-gradient(90deg,var(--gold),transparent);border-radius:999px;margin-bottom:12px}
.eyebrow-sc9ce3{font-family:var(--font);font-size:12px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);margin-bottom:12px;display:inline-block}
.eyebrow-square{background:rgba(201,162,75,.08);border:1px solid var(--border);padding:7px 16px;border-radius:999px}
h1{font-family:var(--font-display);font-size:clamp(29px,4.3vw,51px);line-height:1.05;margin:0 0 16px;font-weight:var(--h1-weight);letter-spacing:-.025em}
h1 em,h1 .accent{font-style:italic;color:var(--gold);font-weight:500}
.hero-sub-sc9ce3{font-size:clamp(17px,2vw,20px);color:var(--fg-muted);max-width:620px;margin:0 0 34px;line-height:1.6}
.hero-cta-sc9ce3{display:flex;gap:14px;flex-wrap:wrap;align-items:center}
.hero-cta-inline{justify-content:flex-start}

/* ===== BUTTONS ===== */
.btn-sc9ce3{display:inline-flex;align-items:center;gap:9px;padding:13px 26px;border-radius:var(--btn-radius);font-family:var(--font);font-weight:600;font-size:15px;border:1px solid transparent;transition:transform .15s,box-shadow .2s,background .2s,border-color .2s,color .2s;white-space:nowrap;cursor:pointer;text-decoration:none;letter-spacing:.01em}
.btn-sc9ce3:hover{text-decoration:none;transform:translateY(-2px)}
.btn-primary-sc9ce3{background:linear-gradient(135deg,#e6c879 0%,#c9a24b 48%,#a9813a 100%);color:#1a1408;box-shadow:var(--shadow-btn);border:1px solid rgba(255,255,255,.18)}
.btn-primary-sc9ce3:hover{color:#140f04;box-shadow:0 16px 34px -12px rgba(201,162,75,.75);filter:brightness(1.05)}
.btn-white{background:var(--fg);color:#14110a}
.btn-white:hover{color:#14110a;filter:brightness(1.05)}
.btn-ghost{background:rgba(236,230,216,.04);color:var(--fg);border:1px solid var(--border)}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold-bright);background:rgba(201,162,75,.06)}
.btn-link{background:transparent;color:var(--gold);padding-left:0;padding-right:0;border:none;box-shadow:none!important;font-weight:600}
.btn-link:hover{color:var(--gold-bright);transform:none}
.btn-link-muted{color:var(--fg-muted)}
.btn-link-muted:hover{color:var(--fg)}
.btn-block{width:100%;justify-content:center}
.btn-lg-sc9ce3{padding:16px 32px;font-size:16px}

/* ===== BLUF (lead summary after H1) ===== */
.bluf-sc9ce3{max-width:760px;margin:4px 0 4px;padding:18px 24px;background:linear-gradient(135deg,rgba(201,162,75,.08),rgba(201,162,75,.015));border:1px solid var(--border);border-left:3px solid var(--gold);border-radius:14px;animation:noirUp .6s .16s ease both}
.bluf-label-sc9ce3{display:inline-flex;align-items:center;gap:7px;font-family:var(--font);font-size:11px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);margin-bottom:11px}
.bluf-label-sc9ce3::before{content:"";width:14px;height:1.5px;background:var(--gold);display:inline-block}
.bluf-sc9ce3 p{margin:0;font-size:17px;line-height:1.7;color:var(--fg)}
.bluf-sc9ce3 p strong{color:var(--gold-bright);font-weight:600}
.bluf-chips-sc9ce3{display:flex;flex-wrap:wrap;gap:9px;margin-top:18px}
.bluf-chip-sc9ce3{font-size:12.5px;font-weight:600;color:var(--fg);background:rgba(236,230,216,.05);border:1px solid var(--border);border-radius:999px;padding:7px 14px;letter-spacing:.01em}
.bluf-chip-sc9ce3 b{color:var(--gold);font-weight:700;margin-right:4px}
@media(max-width:768px){
  .bluf-sc9ce3{padding:18px 20px;margin-bottom:24px}
  .bluf-sc9ce3 p{font-size:15.5px}
}

/* ===== TRUST BAR ===== */
.trust-bar{background:linear-gradient(180deg,rgba(201,162,75,.04),transparent);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:26px 0!important}
.trust-bar ul{list-style:none;display:flex;gap:48px;flex-wrap:wrap;justify-content:center}
.trust-bar li{text-align:center}
.value{font-family:var(--font-display);font-size:32px;font-weight:600;color:var(--gold);letter-spacing:-.02em;line-height:1}
.label{color:var(--fg-muted);font-size:11px;text-transform:uppercase;letter-spacing:.12em;margin-top:6px;display:block}

/* ===== SECTIONS ===== */
.section-sc9ce3{padding:76px 0!important}
.section-head-sc9ce3{text-align:center;max-width:740px;margin:0 auto 48px}
.section-head-sc9ce3 h2{display:inline-block}
.section-sub-sc9ce3{color:var(--fg-muted);font-size:17px;margin:14px 0 0;line-height:1.6}

/* decorative h2 underline (inherited) — recolor to centered gold for section heads */
.section-head-sc9ce3 h2::after{left:50%!important;transform:translateX(-50%);width:54px!important;height:3px!important;background:linear-gradient(90deg,transparent,var(--gold),transparent)!important;bottom:-2px}

/* ===== GRID ===== */
.grid-sc9ce3{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:22px}

/* ===== FEATURES ===== */
.feature{background:var(--card-bg);border:1px solid var(--border-soft);border-radius:var(--radius);padding:30px 26px;text-align:center;transition:transform .2s,box-shadow .2s,border-color .2s;position:relative;overflow:hidden}
.feature::before{content:"";position:absolute;inset:0 0 auto 0;height:1px;background:linear-gradient(90deg,transparent,rgba(201,162,75,.4),transparent);opacity:0;transition:opacity .25s}
.feature:hover{transform:translateY(-4px);box-shadow:var(--card-shadow);border-color:var(--border)}
.feature:hover::before{opacity:1}
.feature h3{margin:14px 0 8px;font-size:17px}
.feature p{color:var(--fg-muted);margin:0;font-size:14.5px;line-height:1.6}
.bare-icon{color:var(--gold);display:flex;justify-content:center;align-items:center;margin-bottom:6px}
.bare-icon svg{width:30px;height:30px;filter:drop-shadow(0 2px 8px rgba(201,162,75,.35))}
.features-list{list-style:none;margin:8px 0;display:flex;flex-direction:column;gap:6px}
.features-list li{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--fg-muted)}
.features-list svg{color:var(--gold);flex-shrink:0}

/* ===== PRODUCT CARDS ===== */
.product-grid-sc9ce3{padding:76px 0!important}
.product-grid-cards-sc9ce3 .grid-sc9ce3{grid-template-columns:repeat(auto-fit,minmax(250px,1fr));align-items:start}
.product-card{background:var(--card-bg);border:1px solid var(--border-soft);border-radius:var(--radius);overflow:hidden;position:relative;display:flex;flex-direction:column;transition:transform .2s,box-shadow .2s,border-color .2s;box-shadow:var(--card-shadow)}
.product-card:hover{transform:translateY(-5px);border-color:var(--gold);box-shadow:0 26px 50px -24px rgba(0,0,0,.9),0 0 0 1px rgba(201,162,75,.25)}
.product-card.featured{border-color:var(--gold);border-width:1px;box-shadow:0 0 0 1px rgba(201,162,75,.35),0 26px 50px -24px rgba(0,0,0,.9)}
.product-body{padding:24px;display:flex;flex-direction:column;gap:9px;flex:1}
.product-body .brand-sc9ce3{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--gold)}
.product-body h3{margin:0;font-size:20px;letter-spacing:-.01em;color:var(--fg)}
.ribbon{position:absolute;top:16px;right:-36px;background:linear-gradient(135deg,#e6c879,#c9a24b);color:#1a1408;font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;padding:5px 44px;transform:rotate(35deg);box-shadow:0 4px 12px rgba(0,0,0,.4)}
.rating{display:flex;align-items:center;gap:2px;color:var(--gold)}
.rating svg{display:block}
.reviews{color:var(--fg-muted);font-size:13px;margin-left:6px}
.desc{color:var(--fg-muted);font-size:14.5px;margin:0;line-height:1.6}
.price-row{display:flex;align-items:baseline;gap:8px;margin-top:4px}
.price{font-family:var(--font-display);font-size:24px;font-weight:600;color:var(--gold);letter-spacing:-.02em}

/* ===== PROSE ===== */
.prose-sc9ce3{max-width:760px;margin:0 auto;padding:56px 28px}
.prose-sc9ce3 h1{font-size:clamp(30px,4vw,44px);margin:0 0 22px;letter-spacing:-.02em}
.prose-sc9ce3 h2{font-size:clamp(24px,3vw,32px);margin:44px 0 16px}
.prose-sc9ce3 h3{font-size:21px;margin:30px 0 10px;color:var(--gold)}
.prose-sc9ce3 p{margin:0 0 18px;line-height:1.85;color:var(--fg-muted)}
.prose-sc9ce3 p strong{color:var(--fg);font-weight:600}
.prose-sc9ce3 ul,.prose-sc9ce3 ol{margin:0 0 18px 1.3em;color:var(--fg-muted)}
.prose-sc9ce3 li{margin:7px 0;line-height:1.7}
.prose-sc9ce3 li::marker{color:var(--gold)}
.prose-sc9ce3 a{color:var(--gold);text-decoration:underline;text-decoration-color:rgba(201,162,75,.4);text-underline-offset:3px}
.prose-sc9ce3 a:hover{color:var(--gold-bright)}
.prose-sc9ce3 table{width:100%;border-collapse:collapse;margin:24px 0;font-size:14.5px}
.prose-sc9ce3 td,.prose-sc9ce3 th{padding:12px 16px;text-align:left;border-bottom:1px solid var(--border)!important;border-left:none!important;border-right:none!important;border-top:none!important}
.prose-sc9ce3 th{background:rgba(201,162,75,.07);font-weight:600;color:var(--fg);font-family:var(--font-display)}
.prose-sc9ce3 strong{font-weight:600;color:var(--fg)}
.prose-sc9ce3 blockquote{border-left:3px solid var(--gold);margin:24px 0;padding:6px 0 6px 22px;color:var(--fg);font-style:italic;font-family:var(--font-display)}

/* ===== FAQ ===== */
.faq-sc9ce3{padding:76px 0!important}
.faq-list-sc9ce3{max-width:840px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
details{background:var(--card-bg);border:1px solid var(--border-soft);border-radius:var(--radius-sm);overflow:hidden;transition:box-shadow .15s,border-color .15s}
details:hover{border-color:var(--border)}
details summary{list-style:none;cursor:pointer;padding:18px 22px;display:flex;align-items:center;justify-content:space-between;gap:16px;font-weight:600;font-size:16px;color:var(--fg);font-family:var(--font-display)}
details summary::-webkit-details-marker{display:none}
details p{padding:0 22px 18px;color:var(--fg-muted);font-size:15px;line-height:1.7;margin:0}

/* ===== FAQ ACCORDION (injected) ===== */
.faq-item-sc9ce3{background:var(--card-bg);border:1px solid var(--border-soft);border-radius:var(--radius-sm);overflow:hidden;transition:border-color .2s,box-shadow .2s}
.faq-item-sc9ce3+.faq-item-sc9ce3{margin-top:0}
.faq-item-sc9ce3:hover{border-color:var(--border)}
.faq-item-sc9ce3 summary{list-style:none;cursor:pointer;padding:20px 24px;display:flex;align-items:center;justify-content:space-between;gap:16px;font-weight:600;font-size:16.5px;color:var(--fg);user-select:none;font-family:var(--font-display);transition:color .18s}
.faq-item-sc9ce3 summary::-webkit-details-marker{display:none}
.faq-item-sc9ce3 summary:hover{color:var(--gold-bright)}
.faq-item-sc9ce3[open]{border-color:var(--border)}
.faq-item-sc9ce3[open] summary{color:var(--gold)}
.faq-arrow-sc9ce3{flex-shrink:0;color:var(--gold);transition:transform .3s cubic-bezier(.4,0,.2,1)}
.faq-item-sc9ce3[open] .faq-arrow-sc9ce3{transform:rotate(180deg)}
.faq-answer-sc9ce3{padding:2px 24px 22px;color:var(--fg-muted);font-size:15px;line-height:1.75}

/* ===== READER REVIEWS ===== */
.reviews-section-sc9ce3{padding:64px 0!important;background:linear-gradient(180deg,rgba(201,162,75,.022),transparent)}
.reviews-grid-sc9ce3{display:grid;grid-template-columns:repeat(auto-fit,minmax(330px,1fr));gap:18px;max-width:1060px;margin:0 auto}
.review-card-sc9ce3{background:var(--card-bg);border:1px solid var(--border-soft);border-radius:16px;padding:24px;display:flex;flex-direction:column;gap:14px;transition:border-color .2s,transform .2s,box-shadow .2s}
.review-card-sc9ce3:hover{border-color:var(--border);transform:translateY(-3px);box-shadow:var(--card-shadow)}
.rv-head-sc9ce3{display:flex;align-items:flex-start;gap:14px}
.rv-avatar-sc9ce3{width:54px;height:54px;border-radius:999px;object-fit:cover;border:2px solid var(--border);flex-shrink:0;background:#fff}
.rv-meta-sc9ce3{flex:1;min-width:0}
.rv-name-sc9ce3{font-family:var(--font-display);font-weight:600;font-size:16px;color:var(--fg);line-height:1.2}
.rv-sub-sc9ce3{display:flex;align-items:center;gap:9px;margin-top:4px;flex-wrap:wrap}
.rv-casino{font-size:12px;color:var(--gold);font-weight:600}
.rv-dot{width:3px;height:3px;border-radius:999px;background:var(--fg-dim)}
.rv-date-sc9ce3{font-size:12px;color:var(--fg-dim)}
.rv-verified{display:inline-flex;align-items:center;gap:5px;font-size:11px;color:var(--emerald);font-weight:600;margin-top:5px}
.rv-stars-sc9ce3{color:var(--gold);font-size:14px;letter-spacing:1.5px;flex-shrink:0;text-shadow:0 1px 6px rgba(201,162,75,.35)}
.rv-body-sc9ce3{color:var(--fg-muted);font-size:14.5px;line-height:1.7;margin:0;font-style:italic}
.rv-body-sc9ce3::before{content:"\201C";color:var(--gold);font-family:var(--font-display);font-size:20px;margin-right:2px}
@media(max-width:768px){
  .reviews-section-sc9ce3{padding:44px 0!important}
  .reviews-grid-sc9ce3{grid-template-columns:1fr}
  .review-card-sc9ce3{padding:20px}
}

/* ===== PROSE FIGURES (thematic illustrations) ===== */
.prose-figure{margin:36px 0;text-align:center}
.prose-figure img{width:100%;max-width:540px;height:auto;margin:0 auto;display:block;filter:drop-shadow(0 18px 42px rgba(0,0,0,.6))}
.prose-figure figcaption{margin-top:12px;font-size:13px;color:var(--fg-dim);letter-spacing:.03em;font-style:italic}

/* ===== SHIMMERING CTA PROMO BLOCKS ===== */
.cta-promo{position:relative;display:flex;align-items:center;gap:22px;margin:40px 0;padding:24px 28px;border-radius:18px;overflow:hidden;text-decoration:none;background:linear-gradient(120deg,#12160d,#1d2214 45%,#12160d);background-size:220% 100%;animation:promoShift 6.5s ease-in-out infinite;transition:transform .2s}
@keyframes promoShift{0%{background-position:0 0}50%{background-position:100% 0}100%{background-position:0 0}}
.cta-promo::before{content:"";position:absolute;inset:0;border-radius:18px;padding:1.4px;background:linear-gradient(120deg,rgba(201,162,75,.12),rgba(247,226,173,.85),rgba(201,162,75,.12));background-size:220% 100%;animation:promoShift 6.5s ease-in-out infinite;-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none}
.cta-promo::after{content:"";position:absolute;top:0;left:-65%;width:48%;height:100%;background:linear-gradient(100deg,transparent,rgba(255,247,222,.16),transparent);transform:skewX(-22deg);animation:promoSheen 5s ease-in-out infinite;pointer-events:none}
@keyframes promoSheen{0%{left:-65%}58%,100%{left:135%}}
.cta-promo:hover{transform:translateY(-3px)}
.cta-promo:hover::after{animation-duration:1.6s}
.cp-logo{position:relative;z-index:1;width:78px;height:78px;border-radius:15px;object-fit:cover;background:#fff;border:1px solid var(--border);flex-shrink:0;box-shadow:0 10px 24px -8px rgba(0,0,0,.75)}
.cp-info{position:relative;z-index:1;flex:1;min-width:0}
.cp-badge{display:inline-block;font-family:var(--font);font-size:10px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#1a1408;background:linear-gradient(135deg,#f7e2ad,#c9a24b);padding:3px 11px;border-radius:999px;margin-bottom:8px}
.cp-name{font-family:var(--font-display);font-weight:600;font-size:20px;color:var(--fg);line-height:1.12}
.cp-bonus{font-size:14px;color:var(--gold);margin-top:4px;font-weight:600}
.cp-btn{position:relative;z-index:1;flex-shrink:0;display:inline-flex;align-items:center;gap:8px;background:linear-gradient(135deg,#f7e2ad,#c9a24b 55%,#a9813a);color:#1a1408;font-family:var(--font);font-weight:700;font-size:15px;padding:14px 28px;border-radius:11px;border:1px solid rgba(255,255,255,.2);box-shadow:0 12px 26px -10px rgba(201,162,75,.75);white-space:nowrap;transition:filter .2s}
.cta-promo:hover .cp-btn{filter:brightness(1.07)}
@media(max-width:640px){
  .cta-promo{flex-direction:column;text-align:center;gap:14px;padding:24px 20px}
  .cp-info{text-align:center}
  .cp-btn{width:100%;justify-content:center}
}
@media(prefers-reduced-motion:reduce){
  .cta-promo,.cta-promo::before{animation:none}
  .cta-promo::after{display:none}
}

/* ===== CTA BAND ===== */
.cta-band-sc9ce3{background:linear-gradient(135deg,#181c12 0%,#0d100b 100%);color:var(--fg);padding:64px 0!important;border-top:1px solid var(--border);border-bottom:1px solid var(--border);position:relative;overflow:hidden}
.cta-band-sc9ce3::before{content:"";position:absolute;inset:0;background:radial-gradient(50vw 60vh at 80% 50%,rgba(201,162,75,.12),transparent 60%);pointer-events:none}
.cta-inner-sc9ce3{display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap;position:relative}
.cta-band-sc9ce3 h2{margin:0 0 8px;color:var(--fg)}
.cta-band-sc9ce3 p{margin:0;color:var(--fg-muted)}

/* ===== FOOTER ===== */
.site-footer-sc9ce3{border-top:1px solid var(--border);padding:64px 0 28px;background:#080a09;color:var(--fg-muted);font-size:14px}
.footer-top-3-sc9ce3{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:48px;margin-bottom:36px}
.footer-brand-sc9ce3 .logo-text-sc9ce3{color:var(--fg)}
.tagline-sc9ce3{color:var(--fg-muted);margin-top:14px;max-width:300px;font-size:14px;line-height:1.6}
.footer-links-sc9ce3 h4{margin:0 0 14px;color:var(--gold);font-size:11px;text-transform:uppercase;letter-spacing:.14em;font-family:var(--font)}
.footer-links-sc9ce3 a{display:block;color:var(--fg-muted);margin-bottom:10px;transition:color .15s,padding-left .15s}
.footer-links-sc9ce3 a:hover{color:var(--gold);padding-left:4px}
.legal-sc9ce3{font-size:12.5px;padding:20px 0;border-top:1px solid var(--border-soft);border-bottom:1px solid var(--border-soft);color:var(--fg-dim);line-height:1.6}
.legal-sc9ce3 p{margin:0}
.copyright-sc9ce3{padding-top:18px;font-size:12px;color:var(--fg-dim);text-align:center}

/* ===== COMPARISON TABLE ===== */
.ctable-section-sc9ce3{padding:26px 0 64px!important;background:linear-gradient(180deg,rgba(201,162,75,.025),transparent)}
.ctable-section-sc9ce3 .section-head-sc9ce3{margin-bottom:26px}
.ctable-sc9ce3{border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);box-shadow:0 30px 60px -30px rgba(0,0,0,.9)}
.ctable-head-sc9ce3{display:grid;grid-template-columns:64px 2fr 1.5fr 120px 176px;gap:16px;padding:14px 24px;background:linear-gradient(135deg,#1a1e13,#12150d);color:var(--gold);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;font-family:var(--font);border-bottom:1px solid var(--border)}
.ctable-row-sc9ce3{display:grid;grid-template-columns:64px 2fr 1.5fr 120px 176px;gap:16px;padding:16px 24px;background:var(--card-bg);border-bottom:1px solid var(--border-soft);align-items:center;transition:background .18s}
.ctable-row-sc9ce3:last-child{border-bottom:none}
.ctable-row-sc9ce3:hover{background:var(--card-bg-hi)}
.ctable-row-sc9ce3.cr-top-sc9ce3{background:linear-gradient(90deg,rgba(201,162,75,.10),rgba(201,162,75,.02));border-left:3px solid var(--gold)}
.cr-rank-sc9ce3{font-family:var(--font-display);font-size:22px;font-weight:700;color:var(--fg-dim);text-align:center;display:flex;flex-direction:column;align-items:center;gap:6px}
.cr-top-sc9ce3 .cr-rank-sc9ce3{color:var(--gold)}
.cr-badge-sc9ce3{background:linear-gradient(135deg,#e6c879,#c9a24b);color:#1a1408;font-size:9px;font-weight:800;padding:3px 9px;border-radius:999px;text-transform:uppercase;letter-spacing:.06em;font-family:var(--font)}
.cr-casino-sc9ce3{display:flex;align-items:center;gap:14px}
.cr-logo{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:13px;color:#fff;flex-shrink:0;box-shadow:0 2px 8px rgba(0,0,0,.4)}
.cr-name-sc9ce3{font-family:var(--font-display);font-weight:600;font-size:16px;color:var(--fg)}
.cr-tag-sc9ce3{font-size:11px;color:var(--fg-muted);margin-top:3px;letter-spacing:.02em}
.cr-bonus-main-sc9ce3{font-weight:700;font-size:15.5px;color:var(--fg)}
.cr-bonus-sub-sc9ce3{font-size:12px;color:var(--gold);margin-top:3px;font-weight:600}
.cr-stars{color:var(--gold);font-size:15px;letter-spacing:2px;text-shadow:0 1px 6px rgba(201,162,75,.4)}
.cr-score-sc9ce3{font-size:12px;color:var(--fg-muted);margin-top:3px;font-weight:600}
.cr-action-sc9ce3{display:flex;flex-direction:column;align-items:stretch;gap:6px}
.cr-action-sc9ce3 .btn-sc9ce3{justify-content:center;font-size:14px;padding:11px 16px}
.cr-note-sc9ce3{font-size:10px;color:var(--fg-dim);text-align:center;letter-spacing:.04em;text-transform:uppercase}

/* logo box in table — 2x larger */
.cr-logo-img-sc9ce3{width:120px;height:120px;border-radius:16px;overflow:hidden;flex-shrink:0;background:#fff;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;box-shadow:0 8px 22px -8px rgba(0,0,0,.7)}
.cr-logo-img-sc9ce3 img{width:100%;height:100%;object-fit:cover;display:block}

@media(max-width:1000px){
  .ctable-head-sc9ce3{grid-template-columns:54px 1.7fr 1.3fr 96px 156px;gap:12px;padding:12px 14px}
  .ctable-row-sc9ce3,.ctable-row-sc9ce3.cr-top-sc9ce3{grid-template-columns:54px 1.7fr 1.3fr 96px 156px;gap:12px;padding:14px}
  .cr-logo-img-sc9ce3{width:88px;height:88px;border-radius:14px}
}
@media(max-width:768px){
  .ctable-head-sc9ce3{display:none}
  .ctable-row-sc9ce3,.ctable-row-sc9ce3.cr-top-sc9ce3{grid-template-columns:auto 1fr;grid-template-rows:auto auto auto auto;gap:10px 14px;padding:18px 16px;position:relative;align-items:center}
  .cr-rank-sc9ce3{font-size:18px;grid-row:1;grid-column:1;align-self:center;flex-direction:row;gap:6px}
  .cr-casino-sc9ce3{grid-row:1;grid-column:2;gap:14px}
  .cr-logo-img-sc9ce3{width:96px;height:96px}
  .cr-bonus-sc9ce3{grid-row:2;grid-column:1 / 3}
  .cr-rating-sc9ce3{grid-row:3;grid-column:1 / 3;display:flex;align-items:center;gap:10px}
  .cr-score-sc9ce3{margin-top:0;margin-left:4px}
  .cr-action-sc9ce3{grid-row:4;grid-column:1 / 3}
  .cr-action-sc9ce3 .btn-sc9ce3{width:100%;padding:15px}
  .cr-note-sc9ce3{display:none}
}
@media(max-width:420px){
  .cr-logo-img-sc9ce3{width:76px;height:76px}
  .cr-name-sc9ce3{font-size:15px}
}

/* ===== BURGER BUTTON ===== */
.burger-btn-sc9ce3{display:none;flex-direction:column;justify-content:center;gap:5px;cursor:pointer;background:none;border:none;padding:8px;color:var(--fg);flex-shrink:0;line-height:0}
.burger-btn-sc9ce3 span{display:block;width:26px;height:2px;background:currentColor;border-radius:2px;transition:transform .25s,opacity .25s}
.burger-btn-sc9ce3.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger-btn-sc9ce3.active span:nth-child(2){opacity:0}
.burger-btn-sc9ce3.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-sc9ce3{display:none;position:fixed;inset:0;background:rgba(8,10,9,.98);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);z-index:300;flex-direction:column;align-items:center;justify-content:center;gap:6px;padding:80px 24px 40px}
.mobile-nav-sc9ce3.open{display:flex}
.mobile-nav-sc9ce3 nav{display:flex;flex-direction:column;align-items:stretch;gap:0;width:100%;max-width:360px}
.mobile-nav-sc9ce3 a{display:block;color:var(--fg);font-family:var(--font-display);font-size:22px;font-weight:600;padding:18px 24px;width:100%;text-align:center;border-bottom:1px solid var(--border-soft);transition:color .15s}
.mobile-nav-sc9ce3 a::after{display:none!important}
.mobile-nav-sc9ce3 a:hover{color:var(--gold)}
.mobile-nav-close-sc9ce3{position:absolute;top:22px;right:22px;background:none;border:1px solid var(--border);border-radius:999px;width:44px;height:44px;color:var(--fg);font-size:22px;cursor:pointer;line-height:1;opacity:.8;transition:opacity .15s,border-color .15s}
.mobile-nav-close-sc9ce3:hover{opacity:1;border-color:var(--gold);color:var(--gold)}

/* keep sticky bar from covering page bottom */
body{padding-bottom:0}

/* ===== FOCUS ===== */
:focus-visible{outline:2px solid var(--gold);outline-offset:2px;border-radius:4px}

/* ===== ON-LOAD STAGGER for hero ===== */
@keyframes noirUp{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)}}
.hero-minimal-rule{animation:noirUp .6s ease both}
.eyebrow-sc9ce3{animation:noirUp .6s .06s ease both}
.hero-minimal h1{animation:noirUp .6s .12s ease both}
.hero-sub-sc9ce3{animation:noirUp .6s .2s ease both}
.hero-cta-sc9ce3{animation:noirUp .6s .28s ease both}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .footer-top-3-sc9ce3{grid-template-columns:1fr 1fr}
  .product-grid-cards-sc9ce3 .grid-sc9ce3{grid-template-columns:1fr 1fr}
  .trust-bar ul{gap:32px}
}
@media(max-width:768px){
  header.nav-sc9ce3 nav{display:none}
  .burger-btn-sc9ce3{display:flex}
  .container-sc9ce3{padding:0 16px}
  .hero-minimal{padding:16px 0 12px!important}
  .section-sc9ce3,.faq-sc9ce3,.product-grid-sc9ce3{padding:44px 0!important}
  .ctable-section-sc9ce3{padding:18px 0 44px!important}
  .section-head-sc9ce3{margin-bottom:30px}
  .grid-sc9ce3{grid-template-columns:1fr 1fr}
  .feature{padding:22px 18px}
  .product-grid-cards-sc9ce3 .grid-sc9ce3{grid-template-columns:1fr}
  .trust-bar ul{gap:18px;justify-content:space-between}
  .trust-bar li{min-width:70px}
  .value{font-size:24px}
  .footer-top-3-sc9ce3{grid-template-columns:1fr;gap:28px}
  .site-footer-sc9ce3{padding:40px 0 24px}
  .cta-inner-sc9ce3{flex-direction:column;align-items:flex-start;gap:18px}
  .cta-band-sc9ce3{padding:44px 0!important}
  .prose-sc9ce3{padding:32px 18px}
}
@media(max-width:480px){
  .grid-sc9ce3{grid-template-columns:1fr}
  .hero-cta-sc9ce3{flex-direction:column;align-items:stretch}
  .hero-cta-sc9ce3 .btn-sc9ce3{justify-content:center}
}

/* ===== STATIC PAGE CONTENT (about/terms/privacy/contact/responsible-gaming) ===== */
.page-content-sc9ce3{max-width:820px;margin:0 auto;padding:8px 0 8px}
.page-content-sc9ce3 .lead{font-size:19px;line-height:1.7;color:var(--fg);margin:0 0 22px}
.page-content-sc9ce3 h2{font-family:var(--font-display);color:var(--gold);font-size:clamp(22px,3vw,30px);margin:36px 0 14px;letter-spacing:-.01em}
.page-content-sc9ce3 h3{font-family:var(--font-display);color:var(--fg);font-size:19px;margin:26px 0 10px}
.page-content-sc9ce3 p{color:var(--fg-muted);line-height:1.85;margin:0 0 16px}
.page-content-sc9ce3 strong{color:var(--fg);font-weight:600}
.page-content-sc9ce3 ul{margin:0 0 18px 1.3em;color:var(--fg-muted)}
.page-content-sc9ce3 li{margin:8px 0;line-height:1.7}
.page-content-sc9ce3 li::marker{color:var(--gold)}
.page-content-sc9ce3 a{color:var(--gold);text-decoration:underline;text-decoration-color:rgba(201,162,75,.45);text-underline-offset:3px}
.page-content-sc9ce3 a:hover{color:var(--gold-bright)}
@media(max-width:768px){.page-content-sc9ce3 .lead{font-size:17px}}

/* ===================================================================
   COMPETITIVE EXPANSION COMPONENTS (author, logos, methodology,
   pros/cons, data tables, category lists) — Casino Noir style
   =================================================================== */

/* author / editor E-E-A-T box */
.author-box-sc9ce3{max-width:880px;margin:0 auto;display:flex;align-items:center;gap:18px;padding:18px 22px;background:var(--card-bg);border:1px solid var(--border-soft);border-left:3px solid var(--gold);border-radius:14px}
.ab-avatar-sc9ce3{width:62px;height:62px;border-radius:999px;object-fit:cover;border:2px solid var(--border);flex-shrink:0;background:#fff}
.ab-main-sc9ce3{flex:1;min-width:0}
.ab-name-sc9ce3{font-family:var(--font-display);font-weight:600;font-size:18px;color:var(--fg)}
.ab-role-sc9ce3{font-size:12.5px;color:var(--gold);font-weight:600;margin-top:1px}
.ab-bio-sc9ce3{font-size:13.5px;color:var(--fg-muted);margin-top:7px;line-height:1.55}
.ab-meta-sc9ce3{display:flex;gap:16px;flex-wrap:wrap;margin-top:9px;font-size:11.5px;color:var(--fg-dim)}
.ab-verified{color:var(--emerald);font-weight:600}
@media(max-width:560px){.author-box-sc9ce3{flex-direction:column;text-align:center;align-items:center}.ab-meta-sc9ce3{justify-content:center}}

/* payment + provider logo strips */
.strip-label-sc9ce3{text-align:center;font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--fg-dim);margin:0 0 16px}
.logo-strip-sc9ce3{display:flex;flex-wrap:wrap;gap:11px;justify-content:center;max-width:920px;margin:0 auto}
.pay-badge-sc9ce3{display:inline-flex;align-items:center;justify-content:center;gap:7px;background:#fff;border-radius:9px;padding:0 15px;height:42px;color:#15151a;box-shadow:0 5px 14px -5px rgba(0,0,0,.55);white-space:nowrap}
.pay-badge-sc9ce3 svg{display:block;height:auto}
.pay-badge-sc9ce3 .mc{position:relative;width:28px;height:18px;flex-shrink:0}
.pay-badge-sc9ce3 .mc::before,.pay-badge-sc9ce3 .mc::after{content:"";position:absolute;top:0;width:18px;height:18px;border-radius:50%}
.pay-badge-sc9ce3 .mc::before{left:0;background:#eb001b}
.pay-badge-sc9ce3 .mc::after{right:0;background:#f79e1b;mix-blend-mode:multiply}
.pay-badge-sc9ce3 .btc{display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;border-radius:50%;background:#f7931a;color:#fff;font-size:13px;font-weight:700}
.prov-chip{display:inline-flex;align-items:center;background:rgba(236,230,216,.04);border:1px solid var(--border);border-radius:999px;padding:9px 17px;font-family:var(--font-display);font-weight:600;font-size:14px;color:var(--fg);letter-spacing:.01em;transition:border-color .18s,color .18s}
.prov-chip:hover{border-color:var(--gold);color:var(--gold-bright)}

/* section intro paragraph */
.sec-intro{max-width:760px;margin:0 auto 30px;text-align:center;color:var(--fg-muted);font-size:16px;line-height:1.75}

/* methodology criteria cards */
.crit-card-sc9ce3{background:var(--card-bg);border:1px solid var(--border-soft);border-radius:16px;padding:24px;transition:border-color .2s,transform .2s}
.crit-card-sc9ce3:hover{border-color:var(--gold);transform:translateY(-3px)}
.crit-num-sc9ce3{font-family:var(--font-display);font-size:26px;font-weight:700;color:var(--gold);line-height:1}
.crit-card-sc9ce3 h3{margin:12px 0 8px;font-size:17px}
.crit-card-sc9ce3 p{color:var(--fg-muted);font-size:14px;margin:0;line-height:1.6}
.crit-weight{margin-top:14px;height:5px;border-radius:999px;background:rgba(236,230,216,.07);overflow:hidden}
.crit-weight i{display:block;height:100%;background:linear-gradient(90deg,#c9a24b,#f0d68f)}

/* pros / cons cards */
.pc-grid-sc9ce3{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:18px;max-width:1060px;margin:0 auto}
.pc-card-sc9ce3{background:var(--card-bg);border:1px solid var(--border-soft);border-radius:16px;padding:22px 24px}
.pc-head-sc9ce3{display:flex;align-items:center;gap:13px;margin-bottom:18px}
.pc-logo-sc9ce3{width:46px;height:46px;border-radius:11px;object-fit:cover;background:#fff;border:1px solid var(--border);flex-shrink:0}
.pc-name-sc9ce3{font-family:var(--font-display);font-weight:600;font-size:17px;color:var(--fg)}
.pc-score-sc9ce3{font-size:12px;color:var(--gold);font-weight:600;margin-top:1px}
.pc-cols-sc9ce3{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.pc-cols-sc9ce3 h4{font-size:11px;text-transform:uppercase;letter-spacing:.08em;margin:0 0 9px;font-family:var(--font)}
.pc-pros-sc9ce3 h4{color:var(--emerald)}
.pc-cons-sc9ce3 h4{color:#cf8a6f}
.pc-cols-sc9ce3 ul{list-style:none;margin:0;display:flex;flex-direction:column;gap:8px}
.pc-cols-sc9ce3 li{font-size:13px;color:var(--fg-muted);line-height:1.5;display:flex;gap:8px}
.pc-pros-sc9ce3 li::before{content:"\2713";color:var(--emerald);font-weight:700;flex-shrink:0}
.pc-cons-sc9ce3 li::before{content:"\2013";color:#cf8a6f;font-weight:700;flex-shrink:0}
@media(max-width:480px){.pc-cols-sc9ce3{grid-template-columns:1fr;gap:14px}}

/* data tables (payments, tax) */
.data-table-wrap-sc9ce3{max-width:900px;margin:0 auto;overflow-x:auto;border:1px solid var(--border);border-radius:14px;box-shadow:0 20px 50px -30px rgba(0,0,0,.8)}
.data-table-sc9ce3{width:100%;border-collapse:collapse;font-size:14px;min-width:520px}
.data-table-sc9ce3 th{background:linear-gradient(135deg,#1a1e13,#12150d);color:var(--gold);text-align:left;padding:14px 18px;font-size:11px;text-transform:uppercase;letter-spacing:.08em;font-weight:700;font-family:var(--font)}
.data-table-sc9ce3 td{padding:14px 18px;border-top:1px solid var(--border-soft);color:var(--fg-muted)}
.data-table-sc9ce3 tr:hover td{background:var(--card-bg-hi)}
.data-table-sc9ce3 td:first-child{color:var(--fg);font-weight:600}
.data-table-sc9ce3 .dt-ico{display:inline-flex;align-items:center;gap:9px}
.data-table-sc9ce3 .dt-dot{width:9px;height:9px;border-radius:50%;background:var(--gold);flex-shrink:0;box-shadow:0 0 8px rgba(201,162,75,.5)}

/* category top-lists */
.cat-cols{display:grid;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));gap:18px;max-width:1060px;margin:0 auto}
.cat-card-sc9ce3{background:var(--card-bg);border:1px solid var(--border-soft);border-radius:16px;padding:22px 24px}
.cat-card-sc9ce3 h3{font-size:16px;margin:0 0 4px;display:flex;align-items:center;gap:9px}
.cat-ico{color:var(--gold);font-size:18px}
.cat-sub-sc9ce3{font-size:12.5px;color:var(--fg-dim);margin:0 0 14px}
.cat-card-sc9ce3 ol{list-style:none;margin:0;counter-reset:c;display:flex;flex-direction:column}
.cat-card-sc9ce3 li{counter-increment:c;display:flex;align-items:center;gap:11px;padding:10px 0;border-top:1px solid var(--border-soft)}
.cat-card-sc9ce3 li:first-child{border-top:none}
.cat-card-sc9ce3 li::before{content:counter(c);width:23px;height:23px;border-radius:7px;background:rgba(201,162,75,.12);color:var(--gold);font-weight:700;font-size:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.cat-card-sc9ce3 li a{color:var(--fg);font-weight:600;font-size:14px;text-decoration:none;flex:1}
.cat-card-sc9ce3 li a:hover{color:var(--gold-bright)}
.cat-tag{font-size:11px;color:var(--gold);white-space:nowrap}

/* ===== CASINO REVIEW PAGE — logo hero ===== */
.review-hero-sc9ce3{display:flex;align-items:center;gap:22px;max-width:820px;margin:0 auto 32px;padding:24px;background:var(--card-bg);border:1px solid var(--border);border-left:3px solid var(--gold);border-radius:18px;box-shadow:0 20px 50px -30px rgba(0,0,0,.8)}
.review-logo{width:112px;height:112px;border-radius:16px;object-fit:cover;background:#fff;border:1px solid var(--border);flex-shrink:0;box-shadow:0 10px 26px -10px rgba(0,0,0,.7)}
.review-hero-info{flex:1;min-width:0;display:flex;flex-direction:column;gap:7px}
.review-rating{color:var(--gold);font-size:18px;letter-spacing:2px;text-shadow:0 1px 6px rgba(201,162,75,.4)}
.review-rating span{color:var(--fg-muted);font-size:13px;letter-spacing:0;margin-left:7px}
.review-bonus{font-family:var(--font-display);font-weight:600;font-size:19px;color:var(--fg)}
.review-tags{font-size:12.5px;color:var(--fg-muted)}
.review-cta{align-self:flex-start;margin-top:5px;display:inline-flex;align-items:center;gap:8px;background:linear-gradient(135deg,#f7e2ad,#c9a24b 55%,#a9813a);color:#1a1408;font-family:var(--font);font-weight:700;font-size:15px;padding:12px 24px;border-radius:11px;text-decoration:none;border:1px solid rgba(255,255,255,.2);box-shadow:0 10px 24px -10px rgba(201,162,75,.7);transition:transform .15s,filter .2s}
.review-cta:hover{transform:translateY(-2px);filter:brightness(1.05)}
@media(max-width:560px){.review-hero-sc9ce3{flex-direction:column;text-align:center;align-items:center}.review-hero-info{align-items:center}.review-cta{align-self:center}}

/* ===== CONTACT FORM ===== */
.contact-form-sc9ce3{max-width:680px;margin:14px auto 0;display:flex;flex-direction:column;gap:16px}
.cf-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.cf-field{display:flex;flex-direction:column;gap:7px}
.contact-form-sc9ce3 label{font-size:13px;font-weight:600;color:var(--fg);letter-spacing:.02em}
.contact-form-sc9ce3 input,.contact-form-sc9ce3 textarea{background:var(--card-bg);border:1px solid var(--border);border-radius:10px;padding:12px 14px;color:var(--fg);font-family:var(--font);font-size:15px;transition:border-color .15s,box-shadow .15s;width:100%}
.contact-form-sc9ce3 input::placeholder,.contact-form-sc9ce3 textarea::placeholder{color:var(--fg-dim)}
.contact-form-sc9ce3 input:focus,.contact-form-sc9ce3 textarea:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(201,162,75,.15)}
.contact-form-sc9ce3 textarea{resize:vertical;min-height:130px;font-family:var(--font)}
.cf-submit{align-self:flex-start;background:linear-gradient(135deg,#f7e2ad,#c9a24b 55%,#a9813a);color:#1a1408;font-family:var(--font);font-weight:700;font-size:15px;padding:13px 30px;border-radius:11px;border:1px solid rgba(255,255,255,.2);cursor:pointer;box-shadow:0 10px 24px -10px rgba(201,162,75,.7);transition:transform .15s,filter .2s}
.cf-submit:hover{transform:translateY(-2px);filter:brightness(1.05)}
@media(max-width:560px){.cf-grid{grid-template-columns:1fr}}

/* ===== BREADCRUMBS (visible) ===== */
.breadcrumb-sc9ce3{max-width:1180px;margin:0 auto;padding:16px 28px 0;font-size:13px;display:flex;flex-wrap:wrap;gap:7px;align-items:center}
.breadcrumb-sc9ce3 a{color:var(--fg-muted);text-decoration:none;transition:color .15s}
.breadcrumb-sc9ce3 a:hover{color:var(--gold)}
.breadcrumb-sc9ce3 span[aria-current]{color:var(--gold);font-weight:600}
.breadcrumb-sc9ce3 .sep{color:var(--fg-dim);opacity:.7}
@media(max-width:768px){.breadcrumb-sc9ce3{padding:14px 16px 0;font-size:12.5px}}

/* ===== INTERNAL RELATED LINKS ===== */
.related-links-sc9ce3{margin:42px 0 0;padding:24px 26px;background:var(--card-bg);border:1px solid var(--border-soft);border-left:3px solid var(--gold);border-radius:16px}
.related-links-sc9ce3 h3{font-family:var(--font-display);color:var(--gold);font-size:19px;margin:0 0 16px}
.related-links-sc9ce3 ul{list-style:none;margin:0;display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:11px}
.related-links-sc9ce3 li{margin:0}
.related-links-sc9ce3 a{display:flex;align-items:center;gap:9px;color:var(--fg);text-decoration:none;padding:11px 15px;background:rgba(236,230,216,.04);border:1px solid var(--border-soft);border-radius:11px;font-size:14px;font-weight:600;transition:border-color .15s,color .15s,transform .15s}
.related-links-sc9ce3 a:hover{border-color:var(--gold);color:var(--gold-bright);transform:translateX(3px)}
.related-links-sc9ce3 a::before{content:"\2192";color:var(--gold);flex-shrink:0}
/* the template hero already shows a big casino logo -> avoid a duplicate inside the summary card */
.review-hero-sc9ce3 .review-logo{display:none}
.review-hero-sc9ce3{max-width:760px}

/* ===== responsive tables: scroll inside their box instead of pushing the page wider than the viewport ===== */
.data-table-wrap-sc9ce3{max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}
@media(max-width:768px){
  /* unwrapped prose/content tables become their own horizontal scroll box */
  .prose-sc9ce3 table,.page-content-sc9ce3 table,main table:not(.ctable-sc9ce3){display:block;width:100%;max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}
  .data-table-sc9ce3{min-width:480px}
}
/* hard stop: nothing may force a horizontal scrollbar on the whole document */
html,body{max-width:100%;overflow-x:hidden}
/* category card subtitle + section subtitle (added for static→CMS parity) */
.cat-card-sc9ce3 .cat-sub-sc9ce3{color:var(--fg-muted);font-size:12.5px;margin:0 0 14px;line-height:1.5}
.categories-section-sc9ce3 .section-head-sc9ce3 p{color:var(--fg-muted);margin-top:8px}

/* product_cards bonus + license badge (static->CMS parity) */
.pc-bonus-sc9ce3{margin:12px 0 16px;font-size:15px;font-weight:600;color:var(--gold)}
.pc-badge-sc9ce3,.pc-license-sc9ce3{display:inline-block;font-size:11px;font-weight:600;color:var(--gold);background:rgba(201,162,75,.1);border:1px solid rgba(201,162,75,.25);padding:3px 9px;border-radius:999px;margin-top:5px}

/* ===== 2026-06-07: article figures, lightbox, centered hero/bluf, mobile ctable logos ===== */

/* centered hero + bluf */
.hero-sc9ce3 .container-sc9ce3{text-align:center}
.hero-sub-sc9ce3{margin-left:auto;margin-right:auto}
.hero-cta-sc9ce3{justify-content:center}
.bluf-sc9ce3{margin-left:auto;margin-right:auto;text-align:center}
.bluf-label-sc9ce3{justify-content:center}
.bluf-chips-sc9ce3{justify-content:center}

/* article inline figures: float left / right / center on desktop, stack on mobile */
.prose-figure--left{float:left;width:min(42%,360px);margin:6px 30px 16px 0}
.prose-figure--right{float:right;width:min(42%,360px);margin:6px 0 16px 30px}
.prose-figure--center{float:none;width:auto;max-width:560px;margin:34px auto}
.prose-figure img{cursor:zoom-in}
.prose-sc9ce3 h2{clear:both}
@media(max-width:640px){.prose-figure--left,.prose-figure--right{float:none;width:auto;max-width:100%;margin:26px auto}}

/* image lightbox */
.lightbox{display:none;position:fixed;inset:0;z-index:99998;background:rgba(4,6,5,.93);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);align-items:center;justify-content:center;padding:32px;cursor:zoom-out}
.lightbox img{max-width:92vw;max-height:88vh;width:auto;height:auto;border-radius:12px;box-shadow:0 30px 90px rgba(0,0,0,.75);cursor:default}
.lightbox-close{position:absolute;top:18px;right:22px;width:48px;height:48px;border-radius:999px;background:rgba(0,0,0,.45);border:1px solid rgba(236,230,216,.3);color:#ece6d8;font-size:22px;line-height:1;cursor:pointer}
.lightbox-close:hover{border-color:var(--gold);color:var(--gold)}

/* mobile comparison table: single centered column, big clickable logo (fills most of the card) */
@media(max-width:768px){
  .ctable-row-sc9ce3,.ctable-row-sc9ce3.cr-top-sc9ce3{grid-template-columns:1fr;grid-template-rows:none;gap:12px;text-align:center;justify-items:center;padding:24px 16px}
  .cr-rank-sc9ce3{grid-row:auto;grid-column:auto;flex-direction:row;justify-content:center}
  .cr-casino-sc9ce3{grid-row:auto;grid-column:auto;flex-direction:column;align-items:center;text-align:center;gap:12px}
  .cr-logo-img-sc9ce3{width:70vw;height:70vw;max-width:300px;max-height:300px;border-radius:20px}
  .cr-bonus-sc9ce3,.cr-rating-sc9ce3,.cr-action-sc9ce3{grid-row:auto;grid-column:auto;width:100%}
  .cr-rating-sc9ce3{justify-content:center}
}

/* mobile: reflow the data table into stacked label:value rows (no horizontal scroll / clipping) */
@media(max-width:600px){
  .data-table-wrap-sc9ce3{overflow-x:visible}
  .data-table-sc9ce3{min-width:0;width:100%;display:block}
  .data-table-sc9ce3 thead{display:none}
  .data-table-sc9ce3 tbody{display:block;width:100%}
  .data-table-sc9ce3 tr{display:block;width:100%;padding:8px 2px;border-bottom:1px solid var(--border-soft)}
  .data-table-sc9ce3 tr:last-child{border-bottom:none}
  .data-table-sc9ce3 td{display:flex;justify-content:space-between;align-items:baseline;gap:18px;border:none!important;padding:8px 6px;text-align:right}
  .data-table-sc9ce3 td::before{content:attr(data-label);color:var(--gold);font-weight:600;text-align:left;white-space:nowrap}
}

/* payment-method brand SVG logos inside the white pill */
.pay-badge-sc9ce3 .pay-ico-sc9ce3{width:34px;height:22px;display:block;flex-shrink:0}
@media(max-width:480px){.pay-badge-sc9ce3{height:38px;padding:0 12px}.pay-badge-sc9ce3 .pay-ico-sc9ce3{width:30px;height:19px}}

/* review-page links inside the comparison table */
.cr-name-sc9ce3 a{color:inherit;text-decoration:none;transition:color .15s}
.cr-name-sc9ce3 a:hover{color:var(--gold-bright);text-decoration:underline;text-underline-offset:3px}
.cr-review-sc9ce3{display:inline-block;font-size:12px;font-weight:600;color:var(--gold);text-decoration:none;letter-spacing:.02em;text-align:center;transition:color .15s}
.cr-review-sc9ce3:hover{color:var(--gold-bright)}

/* footer logo (same brand as header) + centered footer on mobile */
.footer-logo-sc9ce3{display:inline-flex;margin-bottom:4px}
.footer-logo-sc9ce3 .logo-text-sc9ce3{font-size:22px}
.footer-logo-sc9ce3:hover .logo-text-sc9ce3{color:var(--gold-bright)}
@media(max-width:768px){
  .footer-top-3-sc9ce3{text-align:center}
  .footer-brand-sc9ce3{display:flex;flex-direction:column;align-items:center}
  .footer-brand-sc9ce3 .tagline-sc9ce3{margin-left:auto;margin-right:auto}
  .footer-logo-sc9ce3{justify-content:center}
  .footer-links-sc9ce3 a:hover{padding-left:0}
  .legal-sc9ce3{text-align:center}
}

/* brand emblem (poker-chip) before the wordmark in header + footer */
.brand-emblem{flex-shrink:0;display:block;filter:drop-shadow(0 2px 6px rgba(201,162,75,.35))}
.brand-sc9ce3:hover .brand-emblem{filter:drop-shadow(0 2px 8px rgba(240,214,143,.55))}

/* ==== casinowelcomebonusnonaams-com theme override ==== */
/* ===================================================================
   SKIN: casinowelcomebonusnonaams-com
   Brand: Casino Welcome Bonus  ·  Lang: it
   Direction: Swiss / International minimal — precise grid, restraint,
   editorial typographic hierarchy. DARK theme.
   Palette: mauve + bronze. Spectral (display) + Outfit (body/UI).
   =================================================================== */

:root {
  /* --- mauve / bronze core --- */
  --primary: #c8a3c4;          /* soft luminous mauve */
  --primary-dark: #8d6a8a;     /* deep dusk mauve */
  --primary-600: #a986a5;      /* mid mauve */
  --primary-tint: rgba(200, 163, 196, 0.12);

  --accent: #c79a5e;           /* warm bronze */
  --gold: #b9874a;             /* aged bronze */
  --gold-bright: #e2b878;      /* lit bronze highlight */
  --emerald: #9fb8a6;          /* muted sage — restrained, not casino-green */

  /* --- surfaces: cool charcoal w/ a violet undertone --- */
  --bg: #16121a;               /* near-black plum */
  --bg-soft: #1c1722;          /* raised plinth */
  --bg-panel: #221b29;         /* panel */

  /* --- type --- */
  --fg: #efe7ee;               /* warm paper-white */
  --fg-muted: #c3b6c4;         /* muted mauve-grey */
  --fg-dim: #8f8194;           /* dim */
  --muted: #8f8194;

  /* --- structure --- */
  --border: rgba(200, 163, 196, 0.18);
  --border-soft: rgba(200, 163, 196, 0.10);
  --border-strong: rgba(199, 154, 94, 0.42);

  --card-bg: #1d1724;
  --card-bg-hi: #251d2d;
  --card-shadow: 0 1px 0 rgba(255,255,255,0.03), 0 18px 40px -28px rgba(0,0,0,0.85);
  --card-shadow-hover: 0 1px 0 rgba(255,255,255,0.05), 0 30px 60px -30px rgba(0,0,0,0.92);

  /* --- geometry: Swiss = tight, near-square radii --- */
  --radius: 4px;
  --radius-sm: 2px;
  --btn-radius: 2px;

  --h1-weight: 700;

  --font: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-display: 'Spectral', Georgia, 'Times New Roman', serif;

  --shadow-btn: 0 1px 0 rgba(255,255,255,0.06), 0 10px 22px -14px rgba(199,154,94,0.55);

  --success: #9fb8a6;
  --danger: #cf7f7f;
}

/* ===================================================================
   GLOBAL TEXTURE — gradient mesh + faint engineered grid.
   Builds atmosphere without imagery (Swiss restraint).
   =================================================================== */
body {
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 620px at 12% -8%, rgba(141,106,138,0.22), transparent 60%),
    radial-gradient(900px 540px at 96% 4%, rgba(199,154,94,0.10), transparent 58%),
    linear-gradient(180deg, #181320 0%, var(--bg) 46%, #131019 100%);
  background-attachment: fixed, fixed, fixed;
  color: var(--fg);
  font-family: var(--font);
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(200,163,196,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,163,196,0.035) 1px, transparent 1px);
  background-size: 88px 88px, 88px 88px;
  mask-image: radial-gradient(circle at 50% 12%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 12%, #000 0%, transparent 72%);
  opacity: 0.7;
}

main, .container-sc9ce3, .section-sc9ce3 { position: relative; z-index: 1; }

::selection { background: rgba(199,154,94,0.32); color: #fff; }

/* ===================================================================
   TYPOGRAPHY — Spectral for display, Outfit for everything functional
   =================================================================== */
h1, h2, h3, h4, .hero-minimal h1, .section-sc9ce3 h2, .value {
  font-family: var(--font-display);
  letter-spacing: -0.012em;
  color: var(--fg);
}
h1 { font-weight: var(--h1-weight); line-height: 1.06; }
h2 { font-weight: 600; }

p, li, .hero-sub-sc9ce3, .label { font-family: var(--font); }

/* Section headings get a Swiss numeric/rule prefix feel */
.section-sc9ce3 h2 {
  position: relative;
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
  padding-bottom: 0.55rem;
  margin-bottom: 1.6rem;
}
.section-sc9ce3 h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), var(--primary));
}

/* ===================================================================
   NAV — flat, hairline, generous tracking. International style header.
   =================================================================== */
.nav-sticky {
  background: rgba(22,18,26,0.78);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.02);
}

.brand-sc9ce3 {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--fg);
}

.logo {
  width: 30px; height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 55%, var(--gold) 130%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16), 0 6px 16px -8px rgba(199,154,94,0.6);
  color: #1a141f;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}

.logo-text-sc9ce3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.005em;
  color: var(--fg);
}
.logo-text-sc9ce3::after {
  content: "·";
  margin-left: 0.5rem;
  color: var(--gold);
}

/* ===================================================================
   HERO — large editorial headline, thin rule, eyebrow with square mark
   =================================================================== */
.hero-minimal {
  background:
    radial-gradient(720px 360px at 8% 0%, rgba(141,106,138,0.20), transparent 62%),
    linear-gradient(180deg, rgba(34,27,41,0.55), transparent 80%);
  border-bottom: 1px solid var(--border-soft);
  padding-top: clamp(2.6rem, 6vw, 5rem);
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
}

.hero-minimal-inner { max-width: 60rem; }

.hero-minimal h1 {
  font-size: clamp(2.05rem, 6.2vw, 4.2rem);
  font-weight: 700;
}
.hero-minimal h1 em,
.hero-minimal h1 .accent {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
}

.hero-minimal-rule {
  height: 1px;
  width: 100%;
  margin: 1.6rem 0;
  background: linear-gradient(90deg, var(--border-strong), transparent 70%);
  border: 0;
}

.eyebrow-sc9ce3 {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.eyebrow-square {
  width: 9px; height: 9px;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,163,196,0.16);
  display: inline-block;
  transform: rotate(45deg);
}

.hero-sub-sc9ce3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 44rem;
}

.hero-cta-sc9ce3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

/* ===================================================================
   BUTTONS — sharp Swiss rectangles, tracked labels, restrained motion
   =================================================================== */
.btn-sc9ce3 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--btn-radius);
  padding: 0.82rem 1.5rem;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  text-transform: none;
}
.btn-sc9ce3:active { transform: translateY(1px); }

.btn-primary-sc9ce3 {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--primary-dark) 130%);
  color: #1a131e;
  box-shadow: var(--shadow-btn);
  border-color: rgba(255,255,255,0.14);
}
.btn-primary-sc9ce3:hover {
  box-shadow: 0 1px 0 rgba(255,255,255,0.10), 0 16px 34px -16px rgba(199,154,94,0.75);
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn-white {
  background: var(--fg);
  color: #1a131e;
  border-color: rgba(255,255,255,0.2);
}
.btn-white:hover { background: #fff; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--primary-tint);
  border-color: var(--primary);
  color: var(--fg);
}

.btn-link {
  background: none;
  border: 0;
  color: var(--gold-bright);
  padding: 0.3rem 0.1rem;
  position: relative;
  letter-spacing: 0.02em;
}
.btn-link::after {
  content: "";
  position: absolute;
  left: 0.1rem; bottom: -1px;
  width: calc(100% - 0.2rem); height: 1px;
  background: currentColor;
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform .25s ease;
}
.btn-link:hover::after { transform: scaleX(1); }

/* ===================================================================
   BLUF / verdict block — editorial callout, hairline framed
   =================================================================== */
.bluf-sc9ce3 {
  background:
    linear-gradient(180deg, rgba(37,29,45,0.9), rgba(29,23,36,0.9));
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--card-shadow);
}

.bluf-label-sc9ce3 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.bluf-chip-sc9ce3 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--fg);
  background: var(--primary-tint);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.28rem 0.78rem;
}

/* ===================================================================
   TRUST BAR — numeric stats, Spectral figures, hairline dividers
   =================================================================== */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(34,27,41,0.6), rgba(28,23,34,0.6));
  overflow: hidden;
}
.trust-bar > * {
  flex: 1 1 0;
  min-width: 140px;
  padding: 1.1rem 1.25rem;
  border-right: 1px solid var(--border-soft);
}
.trust-bar > *:last-child { border-right: 0; }

.value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
  line-height: 1;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.value em, .value .unit { color: var(--gold-bright); font-style: normal; }

.label {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 0.45rem;
}

/* ===================================================================
   SECTION rhythm — keep base spacing, add subtle top hairline cadence
   =================================================================== */
.section-sc9ce3 { padding-top: clamp(2.6rem, 5vw, 4rem); padding-bottom: clamp(2.6rem, 5vw, 4rem); }
.section-sc9ce3 + .section-sc9ce3 { border-top: 1px solid var(--border-soft); }

/* ===================================================================
   CASINO CARDS — disciplined cards, bronze rank, mauve hover wash
   =================================================================== */
.card-bg,
.casino-card,
.product-card,
.card {
  background:
    linear-gradient(180deg, var(--card-bg-hi) 0%, var(--card-bg) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.card-bg::before,
.casino-card::before,
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-bright), var(--primary));
  opacity: 0;
  transition: opacity .2s ease;
}
.card-bg:hover,
.casino-card:hover,
.product-card:hover,
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--border-strong);
}
.card-bg:hover::before,
.casino-card:hover::before,
.product-card:hover::before { opacity: 1; }

/* rank / index badges if present */
.rank, .card-rank, .badge-rank {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
}

/* bonus / offer emphasis inside cards */
.bonus, .offer, .card .price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg);
}

/* ===================================================================
   LINKS & misc accents
   =================================================================== */
a { color: var(--gold-bright); text-decoration-color: var(--border-strong); }
a:hover { color: var(--primary); }

hr { border: 0; height: 1px; background: var(--border); }

blockquote {
  border-left: 3px solid var(--gold);
  background: var(--primary-tint);
  padding: 1rem 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--fg-muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}

table th {
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  border-bottom: 1px solid var(--border-strong);
}
table td { border-bottom: 1px solid var(--border-soft); color: var(--fg-muted); }

/* focus visibility — accessibility */
a:focus-visible, .btn-sc9ce3:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}
/* ===== block: notfound ===== */
.notfound-section-sc9ce3{padding:clamp(60px,12vh,120px) 0;text-align:center}
.notfound-section-sc9ce3 .nf-inner-sc9ce3{max-width:640px;margin:0 auto;padding:0 20px}
.notfound-section-sc9ce3 .nf-code-sc9ce3{font-size:clamp(110px,26vw,260px);line-height:.85;letter-spacing:.01em;margin:0 0 4px;color:var(--gold,currentColor);opacity:.92}
.notfound-section-sc9ce3 .nf-title-sc9ce3{font-size:clamp(24px,4vw,40px);margin:0 0 14px}
.notfound-section-sc9ce3 .nf-text-sc9ce3{font-size:17px;line-height:1.6;opacity:.72;margin:0 0 28px}
.notfound-section-sc9ce3 .nf-inner-sc9ce3 .btn-sc9ce3{margin:0 auto}

/* fp-root */
:root{--font-display:"Zilla Slab",Georgia,"Times New Roman",serif;--font:"Mona Sans",system-ui,-apple-system,sans-serif}
