/* MapleCrypto Casinos — dark charcoal/navy theme, red maple accent.
   Mobile-first, system fonts, no external dependencies. */

:root {
  --bg: #0d1220;
  --bg-soft: #121a2c;
  --card: #182238;
  --card-2: #1d2a45;
  --line: #2a3855;
  --text: #e9edf6;
  --muted: #a3aec5;
  --maple: #e0353f;
  --maple-dark: #b8232c;
  --maple-soft: rgba(224, 53, 63, 0.12);
  --gold: #f2b94b;
  --green: #3ecf8e;
  --radius: 12px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: #ff7b82; text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }

/* ---------- Sticky top nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 18, 32, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  color: var(--text);
  white-space: nowrap;
}
.brand:hover { text-decoration: none; }
.brand .leaf { color: var(--maple); }

.nav-toggle {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.9rem;
  cursor: pointer;
}

#nav-check { display: none; }

.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  padding: 8px 16px 16px;
  margin: 0;
  list-style: none;
}

#nav-check:checked ~ .nav-links { display: flex; }

.nav-links a {
  display: block;
  color: var(--text);
  padding: 9px 6px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(42, 56, 85, 0.5);
}
.nav-links a:hover { color: var(--maple); text-decoration: none; }
.nav-links a.nav-cta {
  background: var(--maple);
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  margin-top: 10px;
  border-bottom: none;
}
.nav-links a.nav-cta:hover { background: var(--maple-dark); color: #fff; }

@media (min-width: 920px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .nav-links a { border-bottom: none; padding: 6px 10px; font-size: 0.9rem; }
  .nav-links a.nav-cta { margin-top: 0; padding: 8px 16px; }
}

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(900px 360px at 80% -10%, var(--maple-soft), transparent),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-bottom: 1px solid var(--line);
  padding: 44px 0 36px;
}

.hero h1 {
  font-size: 1.8rem;
  line-height: 1.25;
  margin: 0 0 14px;
}

.hero .lede { color: var(--muted); font-size: 1.05rem; max-width: 720px; margin: 0 0 20px; }

@media (min-width: 720px) {
  .hero h1 { font-size: 2.4rem; }
  .hero { padding: 64px 0 52px; }
}

.kicker {
  display: inline-block;
  color: var(--maple);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: var(--maple);
  color: #fff;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}
.btn:hover { background: var(--maple-dark); text-decoration: none; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--maple); color: var(--maple); text-decoration: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Layout / sections ---------- */

main { padding: 32px 0 48px; }

section { margin-bottom: 40px; }

h2 { font-size: 1.4rem; margin: 0 0 14px; line-height: 1.3; }
h3 { font-size: 1.1rem; margin: 22px 0 8px; }

p { margin: 0 0 14px; }

ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 6px; }

.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

/* ---------- Cards ---------- */

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 720px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.card h3 { margin-top: 0; }
.card .icon { font-size: 1.4rem; color: var(--maple); font-weight: 800; }

/* ---------- Toplist (rating cards) ---------- */

.toplist { display: flex; flex-direction: column; gap: 18px; }

.top-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
}

.top-card.rank-1 {
  background: linear-gradient(160deg, var(--card-2), var(--card));
  border: 1px solid var(--maple);
  box-shadow: 0 0 0 3px var(--maple-soft);
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.top-card .casino-name { font-size: 1.3rem; font-weight: 800; margin: 0 0 8px; }

.top-card .score {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--maple);
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 1rem;
}

.top-card.pending { opacity: 0.75; }
.top-card.pending .score { background: var(--line); color: var(--muted); }

.feature-list { list-style: none; padding: 0; margin: 0 0 16px; }
.feature-list li { padding-left: 24px; position: relative; margin-bottom: 7px; }
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.coming-soon {
  display: inline-block;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  color: var(--muted);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---------- Pros / cons ---------- */

.pros-cons { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 18px 0; }
@media (min-width: 720px) { .pros-cons { grid-template-columns: 1fr 1fr; } }

.pros, .cons {
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 1px solid var(--line);
}
.pros { background: rgba(62, 207, 142, 0.07); border-color: rgba(62, 207, 142, 0.35); }
.cons { background: rgba(224, 53, 63, 0.07); border-color: rgba(224, 53, 63, 0.35); }
.pros h3, .cons h3 { margin-top: 0; }
.pros ul, .cons ul { margin-bottom: 0; }

/* ---------- Tables ---------- */

.table-wrap { overflow-x: auto; margin: 0 0 18px; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.95rem;
}
th, td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); }
th { background: var(--bg-soft); color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.8px; }
tr:last-child td { border-bottom: none; }

/* ---------- Affiliate banner slots ---------- */

.aff-slot {
  border: 2px dashed var(--maple);
  background: var(--maple-soft);
  color: var(--muted);
  text-align: center;
  padding: 34px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin: 22px 0;
}

.aff-slot:has(img) {
  border: none;
  background: transparent;
  padding: 0;
}

.aff-slot a { display: block; line-height: 0; }

.aff-slot img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius);
}

/* ---------- Steps ---------- */

.steps { list-style: none; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 16px 58px;
  position: relative;
  margin-bottom: 12px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  background: var(--maple);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

/* ---------- FAQ ---------- */

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 4px 18px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 10px;
  color: var(--maple);
  font-size: 1.3rem;
  font-weight: 800;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--muted); }

/* ---------- Callouts ---------- */

.callout {
  background: var(--bg-soft);
  border-left: 4px solid var(--maple);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin: 18px 0;
}
.callout.note { border-left-color: var(--gold); }

/* ---------- Breadcrumbs ---------- */

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 18px 0 0;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--maple); }

/* ---------- Article meta ---------- */

.article-meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 18px; }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(140deg, var(--card-2), var(--card));
  border: 1px solid var(--maple);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 18px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 36px 0 28px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-bottom: 26px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.site-footer h4 { color: var(--text); margin: 0 0 10px; font-size: 0.95rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 7px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--maple); }

.age-badge {
  display: inline-block;
  border: 2px solid var(--maple);
  color: var(--maple);
  font-weight: 800;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 0.8rem;
  line-height: 1.6;
}


/* ---------- AI / featured snippet summary block ---------- */

.ai-summary {
  background: var(--card, rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line, rgba(255, 255, 255, 0.12));
  border-radius: var(--radius, 10px);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

.ai-summary h2 { font-size: 1.15rem; margin: 0 0 1rem; }

.ai-qa-item + .ai-qa-item { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line, rgba(255, 255, 255, 0.1)); }

.ai-qa-item h3 { font-size: 1rem; margin: 0 0 0.35rem; font-weight: 600; }

.ai-qa-item p { margin: 0; font-size: 0.95rem; line-height: 1.55; opacity: 0.92; }

/* ========== Visual upgrade — hero, stats, CTAs ========== */

.hero-home {
  padding: 48px 0 40px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; }
  .hero-home { padding: 72px 0 56px; }
}

.hero-visual {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
  animation: float-y 5s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-badge {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.hero-badge.b1 { top: 8%; right: -4%; color: var(--green); border-color: rgba(62, 207, 142, 0.4); }
.hero-badge.b2 { bottom: 12%; left: -2%; color: var(--gold); border-color: rgba(242, 185, 75, 0.4); }

@media (max-width: 899px) {
  .hero-badge.b1 { right: 2%; top: 4%; }
  .hero-badge.b2 { left: 2%; bottom: 6%; }
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

@media (min-width: 540px) {
  .stat-bar { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  background: rgba(24, 34, 56, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.stat:hover {
  border-color: var(--maple);
  transform: translateY(-2px);
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--gold);
  margin-bottom: 2px;
}

.stat span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.btn {
  background: linear-gradient(135deg, var(--maple) 0%, #c42a34 100%);
  box-shadow: 0 4px 20px rgba(224, 53, 63, 0.35);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  background: linear-gradient(135deg, var(--maple-dark) 0%, #a01e26 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(224, 53, 63, 0.45);
  text-decoration: none;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.top-card.rank-1 {
  padding: 0;
  overflow: hidden;
}

.top-card.rank-1 .top-card-inner {
  padding: 22px 20px 20px;
}

.top-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  padding-right: 72px;
}

.operator-logo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(145deg, #1e3a5f, #0d1220);
  border: 2px solid var(--maple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  box-shadow: 0 0 20px var(--maple-soft);
}

.coin-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.coin-tag {
  display: inline-block;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.coin-tag.hot {
  border-color: rgba(242, 185, 75, 0.5);
  color: var(--gold);
}

.promo-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 0;
  padding: 16px 18px;
  background: linear-gradient(90deg, rgba(224, 53, 63, 0.15), rgba(242, 185, 75, 0.08));
  border-top: 1px solid rgba(224, 53, 63, 0.35);
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s;
}

.promo-highlight:hover {
  background: linear-gradient(90deg, rgba(224, 53, 63, 0.22), rgba(242, 185, 75, 0.12));
  text-decoration: none;
}

.promo-highlight strong { color: var(--gold); font-size: 1.05rem; }
.promo-highlight span { color: var(--muted); font-size: 0.88rem; }
.promo-highlight .arrow { color: var(--maple); font-weight: 800; font-size: 1.2rem; }

.aff-slot {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.aff-slot:has(img):hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(224, 53, 63, 0.2);
}

.guide-card {
  position: relative;
  padding-top: 52px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.guide-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--guide-accent, var(--maple));
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: var(--guide-accent, var(--maple));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.guide-card h3 a { color: var(--text); }
.guide-card h3 a:hover { color: var(--maple); text-decoration: none; }

.guide-icon {
  position: absolute;
  top: 16px;
  left: 18px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--guide-accent-soft, var(--maple-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.guide-review { --guide-accent: #ff7b82; --guide-accent-soft: rgba(255, 123, 130, 0.15); }
.guide-bonus { --guide-accent: var(--gold); --guide-accent-soft: rgba(242, 185, 75, 0.12); }
.guide-deposits { --guide-accent: #f7931a; --guide-accent-soft: rgba(247, 147, 26, 0.12); }
.guide-sports { --guide-accent: var(--green); --guide-accent-soft: rgba(62, 207, 142, 0.12); }

.card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--maple-soft);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 36px 28px;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 50% 0%, var(--maple-soft), transparent);
  pointer-events: none;
}

.cta-band > * { position: relative; }

.offer-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, var(--card-2), var(--card));
  border: 1px solid var(--maple);
  border-radius: var(--radius);
  padding: 24px;
  margin: 28px 0;
  box-shadow: 0 0 0 3px var(--maple-soft);
}

@media (min-width: 720px) {
  .offer-banner { grid-template-columns: 1fr auto; padding: 28px 32px; }
}

.offer-banner h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  color: var(--gold);
}

.offer-banner p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.offer-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.offer-metrics div {
  font-size: 0.85rem;
  color: var(--text);
}

.offer-metrics strong { color: var(--green); }

.page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 960px) {
  .page-grid { grid-template-columns: 1fr 280px; align-items: start; }
}

.sidebar-card {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--maple);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (min-width: 960px) {
  .sidebar-card { position: sticky; top: 80px; }
}

.sidebar-card .operator-logo {
  margin: 0 auto 12px;
  width: 64px;
  height: 64px;
  font-size: 1.8rem;
}

.sidebar-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.sidebar-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }
.sidebar-card .btn { width: 100%; text-align: center; }

.sidebar-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  text-align: left;
  font-size: 0.85rem;
}

.sidebar-perks li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--muted);
  border-bottom: 1px solid rgba(42, 56, 85, 0.5);
}

.sidebar-perks li:last-child { border-bottom: none; }
.sidebar-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(13, 18, 32, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--maple);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--muted);
}

.sticky-cta strong { color: var(--text); display: block; font-size: 0.9rem; }

@media (min-width: 720px) {
  .sticky-cta { display: none; }
}

body { padding-bottom: env(safe-area-inset-bottom, 0); }

@media (max-width: 719px) {
  body.has-sticky-cta { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0)); }
}

.coin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}

@media (min-width: 540px) {
  .coin-grid { grid-template-columns: repeat(6, 1fr); }
}

.coin-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.coin-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.coin-card .sym {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.coin-card .sym.btc { color: #f7931a; }
.coin-card .sym.eth { color: #627eea; }
.coin-card .sym.usdt { color: #26a17b; font-size: 0.75rem; }
.coin-card .sym.sol { color: #9945ff; }
.coin-card .sym.ton { color: #0098ea; }
.coin-card .sym.bnb { color: #f3ba2f; }

.coin-card span:last-child {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 28px;
}

@media (min-width: 640px) {
  .game-showcase { grid-template-columns: repeat(4, 1fr); }
}

.game-tile {
  background: linear-gradient(160deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.game-tile:hover {
  transform: translateY(-3px);
  border-color: var(--maple);
}

.game-tile .emoji {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
  line-height: 1;
}

.game-tile strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.game-tile span {
  font-size: 0.75rem;
  color: var(--muted);
}

