:root{
  --bg:#f7f2e8;
  --bg-soft:#fcf9f3;
  --surface:#fffdf9;
  --surface-strong:#ffffff;
  --surface-tint:#f4ecde;
  --surface-dark:#1f2937;
  --surface-dark-2:#111827;
  --text:#161616;
  --muted:#655f55;
  --line:rgba(68,48,22,.12);
  --line-strong:rgba(68,48,22,.18);
  --gold:#d8b36a;
  --gold-strong:#b88934;
  --gold-soft:#f4e1b8;
  --accent:#274765;
  --accent-soft:#edf4fb;
  --success:#356f4d;
  --shadow-sm:0 12px 30px rgba(20,14,7,.06);
  --shadow:0 24px 60px rgba(20,14,7,.10);
  --shadow-lg:0 35px 85px rgba(12,10,6,.16);
  --radius-sm:18px;
  --radius:28px;
  --radius-lg:38px;
  --max:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  background:
    radial-gradient(circle at top left, rgba(216,179,106,.18), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(39,71,101,.10), transparent 18%),
    linear-gradient(180deg,#fdfbf7 0%, #f7f2e8 42%, #f6f0e4 100%);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button,input,textarea,select{font:inherit}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(252,249,243,.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(68,48,22,.08);
}

.site-header-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-logo{
  height:48px;
  width:auto;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(18,14,9,.12);
}

.brand-copy{
  display:flex;
  flex-direction:column;
  gap:2px;
  line-height:1.02;
}

.brand-copy strong{
  font-size:1rem;
  letter-spacing:.01em;
}

.brand-copy span{
  font-size:.75rem;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.site-nav a{
  color:#3f3a33;
  font-weight:700;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:14px 22px;
  border-radius:16px;
  border:1px solid transparent;
  font-weight:900;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover{transform:translateY(-2px)}

.btn-primary{
  background:linear-gradient(135deg,#e9c879,#f6dfad);
  color:#24180b;
  box-shadow:0 16px 32px rgba(216,179,106,.28);
}

.btn-secondary{
  background:rgba(255,255,255,.7);
  color:#24180b;
  border-color:rgba(68,48,22,.14);
  box-shadow:var(--shadow-sm);
}

.btn-dark{
  background:linear-gradient(135deg,#24364b,#142030);
  color:#fff;
  box-shadow:0 16px 34px rgba(20,32,48,.20);
}

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(68,48,22,.10);
  color:#3f372f;
  font-weight:800;
  box-shadow:var(--shadow-sm);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20);
  color:#f6e1a6;
  font-size:.9rem;
  font-weight:800;
  letter-spacing:.02em;
  backdrop-filter:blur(10px);
}

.page-section{
  padding:34px 0;
}

.section-head{
  margin-bottom:22px;
}

.section-head h2,
.section-head h3{
  margin:0 0 10px;
  font-size:clamp(2rem,4vw,3.5rem);
  line-height:.98;
  letter-spacing:-.05em;
}

.section-head p{
  margin:0;
  max-width:760px;
  color:var(--muted);
  line-height:1.8;
  font-size:1.02rem;
}

.hero-shell{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:var(--shadow-lg);
  background:
    linear-gradient(115deg, rgba(12,14,18,.82) 10%, rgba(12,14,18,.60) 44%, rgba(12,14,18,.36) 76%),
    url('/hero-cards.jpg') center/cover no-repeat,
    linear-gradient(135deg,#2d2b29,#171513);
}

.home-hero{
  background:
    linear-gradient(112deg, rgba(9,11,16,.84) 8%, rgba(9,11,16,.68) 36%, rgba(9,11,16,.36) 70%, rgba(9,11,16,.22) 100%),
    url('/homepage-hero-v2.jpg') center/cover no-repeat,
    linear-gradient(135deg,#2d2b29,#171513);
}

.home-hero .hero-inner{
  min-height:720px;
  display:flex;
  align-items:stretch;
}

.hero-shell::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.10), transparent 20%),
    radial-gradient(circle at 82% 14%, rgba(216,179,106,.14), transparent 16%),
    radial-gradient(circle at 72% 80%, rgba(39,71,101,.16), transparent 18%);
  pointer-events:none;
}

.hero-inner{
  position:relative;
  z-index:1;
  padding:48px 46px 42px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);
  gap:22px;
  align-items:end;
}

.hero-grid.align-top{
  align-items:start;
}

.hero-copy h1,
.page-hero h1{
  margin:16px 0 0;
  color:#fff;
  font-size:clamp(3rem,7vw,6rem);
  line-height:.94;
  letter-spacing:-.065em;
}

.hero-copy p,
.page-hero p{
  margin:20px 0 0;
  color:rgba(255,255,255,.86);
  font-size:1.1rem;
  line-height:1.8;
  max-width:760px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.spotlight-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.spotlight-chip{
  padding:12px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.16);
}

.spotlight-chip strong{
  display:block;
  margin-bottom:4px;
  color:#f7dfaa;
  font-size:.95rem;
}

.spotlight-chip span{
  color:rgba(255,255,255,.82);
  line-height:1.55;
  font-size:.92rem;
}

.glass-card{
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
  border-radius:26px;
  padding:24px;
  backdrop-filter:blur(18px);
  box-shadow:0 18px 40px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.20);
}

.glass-card.soft-light{
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.14);
}

.glass-card h3,
.glass-card h4{
  margin:0 0 12px;
  color:#f6dda0;
  font-size:1.14rem;
  letter-spacing:-.02em;
}

.glass-list{
  display:grid;
  gap:12px;
}

.glass-item{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.84);
  line-height:1.65;
}

.glass-item:last-child{
  padding-bottom:0;
  border-bottom:none;
}

.surface-card{
  background:linear-gradient(180deg,#ffffff,#fcf8f0);
  border:1px solid rgba(68,48,22,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.surface-card.soft{
  background:linear-gradient(180deg,#fffdfa,#f7f1e5);
}

.surface-card.dark{
  color:#fff;
  background:
    radial-gradient(circle at top right, rgba(216,179,106,.12), transparent 22%),
    linear-gradient(135deg,#1f2937,#101827);
  border-color:rgba(255,255,255,.10);
}

.card-pad{padding:26px}
.card-pad-lg{padding:34px}

.stats-grid,
.feature-grid,
.games-grid,
.faq-grid,
.story-grid,
.quick-grid,
.category-grid{
  display:grid;
  gap:18px;
}

.stats-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.feature-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.games-grid{grid-template-columns:repeat(5,minmax(0,1fr))}
.faq-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.story-grid{grid-template-columns:1.1fr .9fr}
.quick-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.category-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.image-split{grid-template-columns:1.05fr .95fr}
.split-band{grid-template-columns:1.15fr .85fr}

.stat-card strong,
.game-card strong,
.feature-card h3,
.faq-card strong,
.story-card h3,
.quick-card strong,
.category-card strong{
  display:block;
}

.stat-card{
  padding:22px;
}

.metric-bar{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  padding:18px;
  border-radius:24px;
  background:linear-gradient(135deg,#fff8e9,#fffdf8);
  border:1px solid #ecd9b0;
  box-shadow:var(--shadow-sm);
}

.metric{
  padding:14px 16px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(68,48,22,.08);
}

.metric strong{
  display:block;
  font-size:1.15rem;
  letter-spacing:-.02em;
}

.metric span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  line-height:1.6;
  font-size:.95rem;
}

.stat-card strong{
  font-size:1.6rem;
  letter-spacing:-.03em;
}

.stat-card span,
.feature-card p,
.game-card p,
.faq-card p,
.story-card p,
.quick-card p,
.category-card p,
.muted{
  color:var(--muted);
  line-height:1.75;
}

.feature-card,
.game-card,
.faq-card,
.story-card,
.quick-card,
.category-card{
  padding:24px;
}

.feature-card h3,
.story-card h3{
  margin:0 0 10px;
  font-size:1.24rem;
  letter-spacing:-.02em;
}

.trust-panel{
  padding:24px;
}

.trust-panel h3{
  margin:0 0 12px;
  font-size:1.2rem;
  letter-spacing:-.02em;
}

.trust-stack{
  display:grid;
  gap:12px;
  margin-top:14px;
}

.trust-item{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}

.trust-item strong{
  display:block;
  margin-bottom:6px;
  color:#f7dfaa;
}

.trust-item span{
  color:rgba(255,255,255,.82);
  line-height:1.6;
}

.game-card{
  min-height:180px;
}

.image-frame{
  position:relative;
  overflow:hidden;
  min-height:100%;
}

.image-frame img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
}

.image-frame::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:38%;
  background:linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,.10) 38%, rgba(10,10,10,.44) 100%);
  pointer-events:none;
}

.image-callout{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  z-index:1;
  padding:18px 20px;
  border-radius:22px;
  background:rgba(14,18,24,.72);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  backdrop-filter:blur(14px);
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}

.image-callout strong{
  display:block;
  margin-bottom:8px;
  color:#f7dfaa;
  font-size:1.02rem;
}

.image-callout p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.65;
}

.art-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}

.mini-art-card{
  padding:14px;
}

.mini-art-card img{
  width:100%;
  border-radius:20px;
  box-shadow:var(--shadow-sm);
}

.mini-art-card strong{
  display:block;
  margin:14px 0 8px;
  font-size:1rem;
}

.mini-art-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.mockup-band{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}

.badge-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.badge-card{
  padding:18px;
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff,#fbf7ee);
  border:1px solid rgba(68,48,22,.08);
  box-shadow:var(--shadow-sm);
}

.badge-card strong{
  display:block;
  margin-bottom:8px;
  font-size:1rem;
}

.badge-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.game-card a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:16px;
  color:var(--gold-strong);
  font-weight:900;
}

.steps{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.step-card{
  position:relative;
  padding:28px 24px 24px;
}

.step-num{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:linear-gradient(135deg,#f4dfb0,#efd08c);
  color:#3b2810;
  font-weight:900;
  box-shadow:0 12px 24px rgba(216,179,106,.20);
}

.step-card h3{
  margin:18px 0 10px;
  font-size:1.2rem;
  letter-spacing:-.02em;
}

.check-list,
.icon-list,
.detail-list{
  display:grid;
  gap:12px;
}

.check-list div,
.icon-list div,
.detail-list li{
  line-height:1.7;
}

.check-list div::before,
.icon-list div::before{
  content:"";
  display:inline-block;
  width:10px;
  height:10px;
  margin-right:10px;
  border-radius:999px;
  background:linear-gradient(135deg,#e8c678,#c4933f);
  vertical-align:middle;
  box-shadow:0 0 0 4px rgba(216,179,106,.16);
}

.detail-list{
  margin:14px 0 0;
  padding-left:18px;
  color:var(--muted);
}

.band{
  padding:18px 22px;
  border-radius:24px;
  background:linear-gradient(135deg,#fff8e9,#fffdf8);
  border:1px solid #ecd9b0;
  color:#6f531f;
  font-weight:800;
  box-shadow:var(--shadow-sm);
}

.cta-band{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:20px;
  align-items:center;
  padding:28px;
}

.cta-band h3{
  margin:0 0 10px;
  font-size:clamp(1.8rem,3vw,2.7rem);
  letter-spacing:-.04em;
}

.cta-band p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.8;
}

.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:flex-end;
}

.page-hero{
  padding:34px 0 14px;
}

.page-hero .hero-shell{
  background:
    linear-gradient(120deg, rgba(12,14,18,.84) 12%, rgba(12,14,18,.62) 46%, rgba(12,14,18,.38) 74%),
    url('/hero-cards.jpg') center/cover no-repeat,
    linear-gradient(135deg,#2d2b29,#171513);
}

.page-hero.compact .hero-inner{
  padding-bottom:34px;
}

.hero-kicker{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.hero-kicker .surface-card{
  padding:18px;
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(255,255,255,.14);
  box-shadow:none;
}

.hero-kicker strong{
  display:block;
  margin-bottom:8px;
  color:#f8e1a9;
  font-size:1rem;
}

.hero-kicker span{
  color:rgba(255,255,255,.80);
  line-height:1.65;
}

.rates-layout{
  display:grid;
  grid-template-columns:minmax(240px,280px) minmax(0,1fr);
  gap:20px;
  align-items:start;
}

.filter-panel{
  position:sticky;
  top:96px;
  padding:22px;
}

.filter-list{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.filter-btn{
  width:100%;
  text-align:left;
  padding:14px 15px;
  border-radius:16px;
  border:1px solid rgba(68,48,22,.12);
  background:#fff;
  color:#2e2820;
  font-weight:800;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.filter-btn:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-sm);
  border-color:rgba(216,179,106,.38);
}

.filter-btn.active{
  background:linear-gradient(135deg,#e9c879,#f6dfad);
  color:#24180b;
  border-color:transparent;
  box-shadow:0 16px 30px rgba(216,179,106,.25);
}

.rates-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.rate-card{
  padding:24px;
}

.rate-card h2{
  margin:0 0 8px;
  font-size:1.5rem;
  letter-spacing:-.03em;
}

.rate-card .card-sub{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.7;
}

.item{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) auto minmax(110px,130px);
  gap:12px;
  align-items:center;
  padding:13px 0;
  border-bottom:1px solid rgba(68,48,22,.08);
}

.item:last-child{border-bottom:none}

.label{
  font-weight:800;
  line-height:1.55;
}

.rate{
  color:var(--gold-strong);
  font-weight:900;
  white-space:nowrap;
}

.rate-card[hidden]{display:none !important}

input[type="number"],
input[type="text"],
input[type="email"],
textarea{
  width:100%;
  min-height:52px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(68,48,22,.12);
  background:#fff;
  color:#1f1a14;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.6);
}

textarea{
  min-height:120px;
  resize:vertical;
}

input:focus,
textarea:focus{
  outline:none;
  border-color:rgba(184,137,52,.55);
  box-shadow:0 0 0 4px rgba(216,179,106,.14);
}

.summary-grid{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
  gap:18px;
  margin-top:22px;
}

.total-box{
  padding:26px;
}

.total-label{
  color:var(--muted);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
}

.total{
  margin:8px 0 10px;
  font-size:clamp(2.4rem,5vw,4rem);
  letter-spacing:-.06em;
  line-height:.95;
}

.count-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:6px;
  padding:12px 16px;
  border-radius:999px;
  background:var(--surface-tint);
  border:1px solid rgba(68,48,22,.10);
  font-weight:900;
}

.note{
  margin-top:14px;
  color:var(--muted);
  line-height:1.7;
}

.form-card{
  padding:26px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.form-grid .full{
  grid-column:1 / -1;
}

label{
  display:block;
  margin-bottom:8px;
  font-weight:800;
}

.checkbox-row{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:18px;
  border-radius:18px;
  background:var(--surface-tint);
  border:1px solid rgba(68,48,22,.10);
}

.checkbox-row input[type="checkbox"]{
  width:18px;
  height:18px;
  margin-top:4px;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.success{
  display:none;
  margin-top:16px;
  padding:16px 18px;
  border-radius:18px;
  background:#edf8f0;
  border:1px solid rgba(53,111,77,.18);
  color:var(--success);
  font-weight:800;
}

.address-box{
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  max-width:460px;
  line-height:1.85;
}

.shipping-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.timeline{
  display:grid;
  gap:14px;
}

.timeline-item{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  align-items:start;
}

.timeline-mark{
  width:32px;
  height:32px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#f4dfb0,#efd08c);
  color:#38260f;
  font-weight:900;
}

.faq-card strong{
  margin-bottom:10px;
  font-size:1.05rem;
}

.footer{
  padding:28px 0 42px;
  color:#5d574d;
}

.footer-inner{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px 20px;
  padding-top:10px;
  border-top:1px solid rgba(68,48,22,.10);
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.mono{
  font-variant-numeric:tabular-nums;
}

@media (max-width: 1120px){
  .stats-grid,
  .feature-grid,
  .games-grid,
  .quick-grid,
  .category-grid,
  .art-grid,
  .badge-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .hero-grid,
  .story-grid,
  .cta-band,
  .summary-grid,
  .image-split,
  .mockup-band,
  .split-band{
    grid-template-columns:1fr;
  }

  .cta-actions{
    justify-content:flex-start;
  }

  .rates-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 880px){
  .faq-grid,
  .steps,
  .shipping-grid,
  .hero-kicker,
  .art-grid,
  .metric-bar{
    grid-template-columns:1fr;
  }

  .rates-layout{
    grid-template-columns:1fr;
  }

  .filter-panel{
    position:static;
  }
}

@media (max-width: 720px){
  .container{
    width:min(var(--max), calc(100% - 24px));
  }

  .site-header-inner{
    min-height:68px;
    align-items:flex-start;
    padding:12px 0;
    flex-direction:column;
  }

  .site-nav{
    width:100%;
    justify-content:space-between;
    gap:10px 14px;
  }

  .site-nav a:not(.btn){
    font-size:.92rem;
  }

  .brand-copy strong{
    font-size:.92rem;
  }

  .brand-copy span{
    font-size:.62rem;
  }

  .hero-inner,
  .card-pad-lg{
    padding:24px 20px;
  }

  .card-pad,
  .feature-card,
  .game-card,
  .faq-card,
  .story-card,
  .quick-card,
  .category-card,
  .step-card,
  .rate-card,
  .filter-panel,
  .total-box,
  .form-card{
    padding:20px;
  }

  .hero-copy h1,
  .page-hero h1{
    font-size:2.9rem;
    line-height:.95;
  }

  .hero-copy p,
  .page-hero p{
    font-size:1rem;
  }

  .hero-actions,
  .actions{
    flex-direction:column;
  }

  .hero-actions .btn,
  .actions .btn{
    width:100%;
  }

  .stats-grid,
  .feature-grid,
  .games-grid,
  .quick-grid,
  .category-grid,
  .form-grid,
  .badge-grid{
    grid-template-columns:1fr;
  }

  .image-frame img{
    min-height:320px;
  }

  .item{
    grid-template-columns:1fr;
    gap:8px;
  }

  .rate{
    justify-self:start;
  }

  .site-nav .btn{
    min-height:44px;
    padding:11px 16px;
  }

  .footer-inner{
    flex-direction:column;
  }
}

.sbh-shell{
  background:
    radial-gradient(circle at 20% 10%, rgba(226,191,113,.12), transparent 20%),
    linear-gradient(180deg,#faf6ef 0%, #f5efe4 100%);
}

.sbh-topbar{
  position:sticky;
  top:0;
  z-index:70;
  background:rgba(250,246,239,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(130,101,45,.12);
}

.sbh-topbar-inner{
  min-height:88px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:center;
}

.sbh-brand{
  display:flex;
  align-items:center;
  gap:16px;
}

.sbh-brand-logo{
  width:58px;
  height:58px;
  object-fit:contain;
}

.sbh-brand-copy strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.1rem;
  font-size:clamp(1.4rem,2vw,2rem);
  line-height:.95;
  color:#1d2530;
  letter-spacing:-.03em;
}

.sbh-brand-copy span{
  display:block;
  margin-top:4px;
  color:#6c5730;
  font-size:1rem;
}

.sbh-nav{
  display:flex;
  justify-content:center;
  gap:26px;
  flex-wrap:wrap;
}

.sbh-nav a{
  color:#1f2732;
  font-weight:700;
}

.sbh-top-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.sbh-hero-wrap{
  padding:18px 0 0;
}

.sbh-hero{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(130,101,45,.14);
  border-radius:0 0 28px 28px;
  background:
    linear-gradient(90deg, rgba(248,242,233,.96) 0%, rgba(251,247,240,.92) 42%, rgba(246,237,221,.78) 68%, rgba(237,223,198,.54) 100%),
    url('/homepage-hero-v2.jpg') right center/cover no-repeat;
  box-shadow:0 18px 44px rgba(18,15,9,.08);
  padding:34px 34px 22px;
}

.sbh-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 24% 42%, rgba(221,189,112,.10), transparent 26%),
    radial-gradient(circle at 79% 34%, rgba(221,189,112,.14), transparent 24%),
    linear-gradient(90deg, rgba(250,246,239,.40) 0%, rgba(250,246,239,.08) 52%, rgba(16,13,10,.08) 100%);
  pointer-events:none;
}

.sbh-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(420px,.9fr);
  gap:26px;
  align-items:start;
}

.sbh-hero-copy{
  padding:12px 0 0 8px;
}

.sbh-hero-copy h1{
  margin:0;
  max-width:700px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.9rem,6.5vw,5.3rem);
  line-height:.97;
  letter-spacing:-.07em;
  color:#17202a;
}

.sbh-hero-copy h1 span{
  color:#c99731;
}

.sbh-hero-copy p{
  margin:18px 0 0;
  color:#20262f;
  font-size:1.35rem;
  line-height:1.4;
}

.sbh-hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:26px;
}

.sbh-worth-card{
  position:relative;
  z-index:2;
  background:rgba(255,251,245,.96);
  border:1px solid rgba(130,101,45,.18);
  border-radius:22px;
  box-shadow:0 20px 44px rgba(20,16,8,.12);
  padding:14px;
  max-width:520px;
  justify-self:end;
}

.sbh-worth-header{
  padding:14px 18px 16px;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:900;
  color:#1d2530;
  border-bottom:1px solid rgba(130,101,45,.16);
}

.sbh-worth-grid{
  display:grid;
  grid-template-columns:1.15fr .75fr;
  gap:0;
}

.sbh-payouts,
.sbh-accepts{
  padding:16px 14px 12px;
}

.sbh-payouts{
  border-right:1px solid rgba(130,101,45,.14);
}

.sbh-payouts h3,
.sbh-accepts h3{
  margin:0 0 12px;
  font-size:.95rem;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:#2c3440;
  text-align:center;
}

.sbh-payout-item{
  display:grid;
  grid-template-columns:54px 1fr auto;
  gap:12px;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid rgba(130,101,45,.12);
}

.sbh-payouts{
  text-align:center;
}

.sbh-payout-item{
  text-align:left;
}

.sbh-payout-item strong{
  display:block;
  color:#1b2430;
}

.sbh-payout-item span{
  display:block;
  margin-top:3px;
  color:#6a6458;
  font-size:.92rem;
}

.sbh-payout-price{
  color:#4d8b33;
  font-weight:900;
  font-size:1.15rem;
}

.sbh-payout-art{
  width:54px;
  height:54px;
  border-radius:8px;
  border:1px solid rgba(70,48,16,.28);
  box-shadow:0 8px 18px rgba(18,14,8,.12);
  object-fit:cover;
  background:#faf7f0;
}

.sbh-art-fire{
  background:
    radial-gradient(circle at 45% 35%, rgba(255,208,99,.9), transparent 28%),
    linear-gradient(135deg,#153c57,#071a27 55%, #d99d34);
}

.sbh-art-lightning{
  background:
    linear-gradient(135deg,#2a1a10,#110803),
    linear-gradient(45deg,transparent 46%, #ffb33c 47%, #ffb33c 55%, transparent 56%);
  background-blend-mode:screen;
}

.sbh-art-dragon{
  background:
    radial-gradient(circle at 55% 40%, rgba(209,229,255,.7), transparent 24%),
    linear-gradient(135deg,#1f375e,#0b1321 62%, #94743d);
}

.sbh-inline-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  color:#9b6a1c;
  font-weight:900;
}

.sbh-inline-link::after{
  content:"→";
}

.sbh-logo-list{
  display:grid;
  gap:14px;
  justify-items:center;
  padding-top:2px;
  text-align:center;
}

.sbh-more-games{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:2px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff8e9;
  border:1px solid rgba(196,151,49,.22);
  color:#7a5718;
  font-weight:900;
  font-size:.9rem;
}

.sbh-logo-image{
  display:block;
  width:auto;
  max-width:150px;
  max-height:42px;
  object-fit:contain;
}

.sbh-logo-image.pokemon{
  max-width:146px;
  max-height:54px;
}

.sbh-logo-image.magic{
  max-width:136px;
  max-height:36px;
}

.sbh-logo-image.yugioh{
  max-width:148px;
  max-height:48px;
}

.sbh-logo-image.onepiece{
  max-width:140px;
  max-height:40px;
}

.sbh-logo-image.lorcana{
  max-width:146px;
  max-height:52px;
}

.sbh-game-mark{
  text-align:center;
  letter-spacing:-.03em;
  line-height:1;
}

.sbh-game-mark.pokemon{
  font-size:2rem;
  font-weight:900;
  color:#1e5cbc;
  text-shadow:0 2px 0 #f4ca3b, 0 0 1px #f4ca3b;
}

.sbh-game-mark.mtg{
  font-size:1.65rem;
  font-weight:900;
  color:#8c4022;
  text-transform:uppercase;
}

.sbh-game-mark.yugioh{
  font-size:1.6rem;
  font-weight:900;
  color:#af2c26;
}

.sbh-game-mark.onepiece{
  font-size:1.45rem;
  font-weight:900;
  color:#111827;
  text-transform:uppercase;
}

.sbh-game-mark.lorcana{
  font-size:1.6rem;
  font-family:Georgia,"Times New Roman",serif;
  color:#7b6635;
}

.sbh-worth-footer{
  margin-top:10px;
  padding:16px 18px;
  border-radius:0 0 16px 16px;
  background:#1f2937;
  color:#fff;
  text-align:center;
  font-size:1.05rem;
  font-weight:800;
}

.sbh-trust-strip{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-top:22px;
}

.sbh-trust-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:14px 12px;
}

.sbh-icon{
  width:48px;
  height:48px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#fffaf0;
  border:1px solid rgba(196,151,49,.22);
  color:#bd8b27;
  font-size:1.4rem;
  box-shadow:var(--shadow-sm);
}

.sbh-trust-item strong{
  display:block;
  color:#1b2430;
}

.sbh-trust-item span{
  display:block;
  margin-top:4px;
  color:#625c51;
  line-height:1.5;
  font-size:.95rem;
}

.sbh-lower{
  padding:26px 0 34px;
}

.sbh-two-up{
  display:grid;
  grid-template-columns:1.15fr .95fr;
  gap:18px;
  margin-top:18px;
}

.sbh-panel{
  background:#fbf7f0;
  border:1px solid rgba(130,101,45,.14);
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 36px rgba(20,16,8,.05);
}

.sbh-panel-title{
  margin-bottom:18px;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.03em;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.2rem;
  font-weight:800;
  color:#2c251a;
}

.sbh-section-kicker{
  width:max-content;
  max-width:100%;
  margin:0 auto 8px;
  padding:7px 13px;
  border-radius:999px;
  background:#fff4dc;
  border:1px solid rgba(202,155,50,.22);
  color:#9a6a18;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.sbh-process-panel{
  position:relative;
  overflow:hidden;
  padding:20px 22px 22px;
  background:
    radial-gradient(circle at 10% 0%, rgba(216,179,106,.20), transparent 26%),
    radial-gradient(circle at 92% 14%, rgba(39,71,101,.09), transparent 22%),
    linear-gradient(180deg,#fffaf0,#f5ecdc);
}

.sbh-process-panel::before{
  content:"";
  position:absolute;
  inset:78px 54px auto;
  height:2px;
  background:linear-gradient(90deg, transparent, rgba(202,155,50,.22), transparent);
  pointer-events:none;
}

.sbh-process-intro{
  max-width:760px;
  margin:-8px auto 20px;
  color:#655f55;
  line-height:1.7;
  text-align:center;
}

.sbh-steps{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.sbh-step{
  position:relative;
  overflow:hidden;
  text-align:center;
  padding:10px 10px 20px;
  border:1px solid rgba(130,101,45,.10);
  border-radius:18px;
  background:rgba(255,253,248,.72);
  box-shadow:0 14px 28px rgba(39,31,16,.045);
}

.sbh-step:last-child{
  border-right:1px solid rgba(130,101,45,.10);
}

.sbh-step-num{
  width:38px;
  height:38px;
  margin:-20px auto 12px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#17233a,#274765);
  color:#f7dfaa;
  font-size:.9rem;
  font-weight:900;
  border:3px solid #fffdf8;
  box-shadow:0 10px 18px rgba(23,35,58,.16);
}

.sbh-step-art{
  min-height:118px;
  display:grid;
  place-items:end center;
  padding:6px 8px 0;
  border-radius:14px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255,255,255,.74), transparent 32%),
    linear-gradient(145deg,#f7e7c5,#eef4fb);
}

.sbh-step-art img{
  width:min(174px,100%);
  height:116px;
  object-fit:contain;
  filter:drop-shadow(0 14px 18px rgba(36,26,10,.10));
}

.sbh-step-copy{
  position:relative;
  padding:0 6px;
}

.sbh-step strong{
  display:block;
  color:#1c2430;
  font-size:1.02rem;
  letter-spacing:-.01em;
}

.sbh-step p{
  max-width:190px;
  margin:10px auto 0;
  color:#655f55;
  line-height:1.55;
  font-size:.96rem;
}

.sbh-reviews{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.sbh-review{
  background:#fffdf9;
  border:1px solid rgba(130,101,45,.12);
  border-radius:14px;
  padding:16px;
}

.sbh-stars{
  color:#c99731;
  letter-spacing:.15em;
  font-size:1.15rem;
}

.sbh-review p{
  margin:12px 0;
  color:#2b3137;
  font-style:italic;
  line-height:1.55;
}

.sbh-review strong{
  display:block;
  color:#1c2430;
}

.sbh-review span{
  display:block;
  margin-top:8px;
  color:#8b836f;
}

.sbh-bottom-grid{
  grid-template-columns:1.25fr .75fr;
}

.sbh-accept-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}

.sbh-accept-card{
  min-height:88px;
  display:grid;
  place-items:center;
  background:#fffdf9;
  border:1px solid rgba(130,101,45,.12);
  border-radius:14px;
  padding:14px 12px;
  text-align:center;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.sbh-accept-card:hover{
  transform:translateY(-2px);
  border-color:rgba(202,155,50,.28);
  box-shadow:0 14px 30px rgba(20,16,8,.08);
}

.sbh-logo-link{
  width:100%;
  min-height:60px;
  display:grid;
  place-items:center;
}

.sbh-logo-tile{
  display:block;
  width:auto;
  margin:0 auto;
  object-fit:contain;
  max-width:100%;
  height:44px;
}

.sbh-logo-tile.pokemon{
  height:50px;
}

.sbh-logo-tile.magic{
  height:34px;
}

.sbh-logo-tile.yugioh{
  height:46px;
}

.sbh-logo-tile.onepiece{
  height:34px;
}

.sbh-logo-tile.lorcana{
  height:44px;
}

.sbh-logo-tile.dbs,
.sbh-logo-tile.union,
.sbh-logo-tile.fftcg,
.sbh-logo-tile.digimon,
.sbh-logo-tile.weiss,
.sbh-logo-tile.riftbound,
.sbh-logo-tile.wow,
.sbh-logo-tile.dbz{
  height:52px;
}

.sbh-logo-tile.fftcg,
.sbh-logo-tile.weiss{
  height:58px;
}

.sbh-logo-tile.riftbound,
.sbh-logo-tile.wow,
.sbh-logo-tile.dbz{
  height:60px;
}

.sbh-logo-tile.middleearth{
  height:72px;
  border-radius:8px;
  box-shadow:0 8px 18px rgba(20,16,8,.16);
}

.sbh-accept-card a::after{
  content:"→";
}

.sbh-accept-card .sbh-logo-link::after{
  content:none;
}

.sbh-faq-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}

.sbh-faq-head a{
  color:#29466d;
  font-weight:800;
}

.sbh-faq-list{
  display:grid;
}

.sbh-faq-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:16px 0;
  border-top:1px solid rgba(130,101,45,.14);
  color:#212730;
}

.sbh-faq-item strong{
  color:#202a38;
  font-size:1.45rem;
  font-weight:400;
}

.sbh-about-strip{
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
  margin-top:18px;
  padding:24px 22px;
  border-radius:20px;
  background:linear-gradient(135deg,#fff7e8,#fffdf9);
  border:1px solid rgba(130,101,45,.14);
  box-shadow:0 14px 30px rgba(20,16,8,.05);
}

.sbh-about-strip strong{
  display:block;
  color:#1c2430;
  font-size:1.15rem;
}

.sbh-about-strip p{
  margin:8px 0 0;
  color:#655f55;
  line-height:1.65;
}

.sbh-about-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

@media (max-width: 1200px){
  .sbh-hero-grid,
  .sbh-two-up,
  .sbh-bottom-grid,
  .sbh-about-strip{
    grid-template-columns:1fr;
  }

  .sbh-worth-grid{
    grid-template-columns:1fr;
  }

  .sbh-payouts{
    border-right:none;
    border-bottom:1px solid rgba(130,101,45,.14);
  }

  .sbh-trust-strip,
  .sbh-accept-grid,
  .sbh-reviews{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 900px){
  .sbh-topbar-inner{
    grid-template-columns:1fr;
    justify-items:start;
    padding:16px 0;
  }

  .sbh-nav{
    justify-content:flex-start;
  }

  .sbh-top-actions{
    justify-content:flex-start;
  }

  .sbh-hero{
    padding:22px 18px 18px;
  }

  .sbh-hero-copy{
    padding-left:0;
  }

  .sbh-hero-copy p{
    font-size:1.2rem;
  }

  .sbh-trust-strip,
  .sbh-steps,
  .sbh-reviews,
  .sbh-accept-grid{
    grid-template-columns:1fr;
  }

  .sbh-step{
    border-right:1px solid rgba(130,101,45,.13);
    border-bottom:1px solid rgba(130,101,45,.13);
    padding-bottom:18px;
  }

  .sbh-step:last-child{
    border-bottom:1px solid rgba(130,101,45,.13);
  }

  .sbh-decor{
    display:none;
  }
}

@media (max-width: 640px){
  .sbh-hero-copy h1{
    font-size:3rem;
  }

  .sbh-hero-actions,
  .sbh-top-actions,
  .sbh-about-actions{
    flex-direction:column;
  }

  .sbh-hero-actions .btn,
  .sbh-top-actions .btn,
  .sbh-about-actions .btn{
    width:100%;
  }
}

/* Homepage cleanup overrides */
.sbh-art-pokemon-deck{
  background:
    radial-gradient(circle at 45% 35%, rgba(255,221,138,.95), transparent 24%),
    linear-gradient(135deg,#19345f,#0a1627 62%, #e1b34e);
}

.sbh-art-union-kit{
  background:
    radial-gradient(circle at 38% 28%, rgba(255,255,255,.26), transparent 22%),
    linear-gradient(135deg,#4d1d37,#130816 58%, #e6be67);
}

.sbh-art-ygo-foil{
  background:
    radial-gradient(circle at 55% 40%, rgba(209,229,255,.7), transparent 24%),
    linear-gradient(135deg,#1d2747,#0b1120 62%, #b18a40);
}

.sbh-inline-link::after,
.sbh-accept-card a::after{
  content:"->";
}

.sbh-accept-card .sbh-logo-link::after{
  content:none;
}

.sbh-icon{
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.02em;
}

.sbh-step-icon{
  font-size:1.2rem;
  font-weight:900;
  min-height:28px;
}

.sbh-faq-item{
  display:block;
  padding:0;
}

.sbh-faq-item summary{
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:16px 0;
  cursor:pointer;
}

.sbh-faq-item summary::-webkit-details-marker{
  display:none;
}

.sbh-faq-answer{
  padding:0 0 16px;
  color:#655f55;
  line-height:1.6;
}

@media (max-width: 1200px){
  .sbh-worth-card{
    max-width:none;
    justify-self:stretch;
  }
}
