/*
  Grandbet88 — Gold Rush Night design system
  Base: deep navy-black felt (#0B0E17) · Brand: Jackpot Gold (#F5C542)
  Action: chip red (#E1322D) · Support: trust green / info blue
  Fonts: Outfit (display) + Plus Jakarta Sans (body)
*/

:root {
  --bg: #0b0e17;
  --bg-2: #10141f;
  --bg-3: #161b2a;
  --card: rgba(255, 255, 255, 0.035);
  --card-border: rgba(245, 197, 66, 0.16);
  --gold: #f5c542;
  --gold-2: #d4a017;
  --gold-soft: rgba(245, 197, 66, 0.12);
  --red: #e1322d;
  --red-2: #b3241f;
  --green: #2ecc71;
  --blue: #3b82f6;
  --text: #f5f2ea;
  --text-2: #a8a69e;
  --text-3: #7c7a72;
  --radius: 14px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-gold: 0 8px 32px rgba(245, 197, 66, 0.12);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.18s var(--ease-out); }
a:hover { color: #ffd970; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; font-weight: 800; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- Top bar ---------- */
.topbar {
  background: #070910;
  border-bottom: 1px solid rgba(245, 197, 66, 0.12);
  font-size: 12.5px;
  color: var(--text-2);
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar .badge18 {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 20px; border: 1.5px solid var(--red); border-radius: 5px;
  color: var(--red); font-weight: 700; font-size: 11px; font-family: var(--font-display);
  padding: 0 5px; margin-right: 8px;
}
.topbar .date { color: var(--gold); font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(11, 14, 23, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 197, 66, 0.18);
}
.site-header .container { display: flex; align-items: center; gap: 18px; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img { width: 42px; height: 42px; filter: drop-shadow(0 2px 8px rgba(245, 197, 66, 0.35)); }
.brand .wordmark { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: 0.4px; color: var(--text); line-height: 1; }
.brand .wordmark b { background: linear-gradient(135deg, #ffe9a8, var(--gold) 45%, var(--gold-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.main-nav { flex: 1; }
.main-nav ul { list-style: none; display: flex; gap: 4px; align-items: center; }
.main-nav a {
  display: block; padding: 8px 13px; border-radius: 9px;
  color: var(--text-2); font-weight: 600; font-size: 14.5px;
  transition: all 0.18s var(--ease-out);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); background: var(--gold-soft); }

.header-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 10px 22px; border-radius: 11px; border: none; cursor: pointer;
  transition: transform 0.16s var(--ease-out), box-shadow 0.16s var(--ease-out), background 0.16s;
  text-align: center; line-height: 1.25;
}
.btn:active { transform: scale(0.96); }
.btn-red {
  background: linear-gradient(180deg, #f0443e, var(--red) 55%, var(--red-2));
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(225, 50, 45, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-red:hover { box-shadow: 0 6px 26px rgba(225, 50, 45, 0.5), inset 0 1px 0 rgba(255,255,255,0.25); transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(180deg, #ffe9a8, var(--gold) 45%, var(--gold-2));
  color: #231a04 !important;
  box-shadow: 0 4px 18px rgba(245, 197, 66, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-gold:hover { box-shadow: 0 6px 26px rgba(245, 197, 66, 0.45); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--gold) !important;
  border: 1.5px solid rgba(245, 197, 66, 0.5);
}
.btn-outline:hover { background: var(--gold-soft); border-color: var(--gold); }
.btn-sm { padding: 8px 16px; font-size: 13.5px; border-radius: 9px; }
.btn-lg { padding: 14px 30px; font-size: 16.5px; border-radius: 13px; }

/* hamburger */
.nav-toggle {
  display: none; background: none; border: 1.5px solid rgba(245,197,66,0.4);
  border-radius: 9px; width: 42px; height: 42px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--gold); border-radius: 2px; transition: 0.2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 500px at 78% 30%, rgba(245, 197, 66, 0.14), transparent 60%),
              radial-gradient(800px 400px at 10% 90%, rgba(225, 50, 45, 0.08), transparent 60%),
              var(--bg);
}
.hero .container {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px;
  align-items: center; padding-top: 64px; padding-bottom: 72px;
}
.hero h1 { font-size: clamp(30px, 4.4vw, 52px); font-weight: 900; letter-spacing: -0.5px; }
.hero h1 .gold { background: linear-gradient(120deg, #ffe9a8, var(--gold) 50%, var(--gold-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { color: var(--text-2); font-size: 17.5px; margin: 20px 0 28px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.hero-badges .hb { display: flex; align-items: center; gap: 9px; color: var(--text-2); font-size: 13.5px; font-weight: 600; }
.hero-badges .hb svg { flex-shrink: 0; }
.hero-img { position: relative; }
.hero-img img { border-radius: 20px; border: 1px solid rgba(245, 197, 66, 0.25); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), var(--shadow-gold); }

/* floating coins */
.coin {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 2;
  background: radial-gradient(circle at 32% 30%, #ffe9a8, var(--gold) 45%, #a87c00);
  box-shadow: inset 0 -3px 6px rgba(0,0,0,0.35), 0 4px 12px rgba(245,197,66,0.4);
  animation: coinFloat 5s ease-in-out infinite;
  opacity: 0.9;
}
.coin::after { content: ''; position: absolute; inset: 18%; border-radius: 50%; border: 2px dashed rgba(120, 84, 0, 0.55); }
@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; position: relative; }
.section.alt { background: var(--bg-2); }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 2.2px; text-transform: uppercase; margin-bottom: 12px;
}
.kicker::before { content: ''; width: 26px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold)); }
.section-head.center .kicker::after { content: ''; width: 26px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
.section-head h2 { font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -0.4px; }
.section-head p { color: var(--text-2); margin-top: 14px; font-size: 16.5px; }

/* gold-trim cards */
.gcard {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative; overflow: hidden;
  transition: transform 0.2s var(--ease-out), border-color 0.2s, box-shadow 0.2s;
}
.gcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 66, 0.55), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.gcard:hover { transform: translateY(-4px); border-color: rgba(245, 197, 66, 0.4); box-shadow: var(--shadow-gold); }
.gcard:hover::before { opacity: 1; }
.gcard h3 { font-size: 19px; margin-bottom: 10px; font-weight: 700; }
.gcard p { color: var(--text-2); font-size: 15px; line-height: 1.7; }
.gcard .icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  background: var(--gold-soft); border: 1px solid rgba(245, 197, 66, 0.25);
  display: flex; align-items: center; justify-content: center;
}

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Payment ---------- */
.pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pay-item {
  background: var(--card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 18px 16px; text-align: center;
  transition: all 0.2s var(--ease-out);
}
.pay-item:hover { border-color: rgba(245,197,66,0.4); transform: translateY(-3px); }
.pay-item .pi-icon {
  width: 44px; height: 44px; margin: 0 auto 10px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 13px; color: #231a04;
  background: linear-gradient(135deg, #ffe9a8, var(--gold));
}
.pay-item h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.pay-item p { font-size: 12.5px; color: var(--text-3); line-height: 1.5; }

/* ---------- Compare table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--card-border); -webkit-overflow-scrolling: touch; }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--bg-2); }
table.compare th, table.compare td { padding: 15px 18px; text-align: left; font-size: 14.5px; border-bottom: 1px solid rgba(255,255,255,0.06); }
table.compare thead th {
  background: linear-gradient(180deg, rgba(245,197,66,0.14), rgba(245,197,66,0.05));
  font-family: var(--font-display); font-weight: 700; color: var(--gold); font-size: 14px; letter-spacing: 0.3px;
}
table.compare tbody tr:hover { background: rgba(245, 197, 66, 0.04); }
table.compare td.y { color: var(--green); font-weight: 700; }
table.compare td.n { color: var(--red); font-weight: 600; }
table.compare td:first-child { color: var(--text-2); font-weight: 600; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding: 26px 22px 22px; }
.step::after {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 14px; right: 18px;
  font-family: var(--font-display); font-weight: 900; font-size: 34px;
  color: rgba(245, 197, 66, 0.14);
}
.step h3 { font-size: 16.5px; }

/* ---------- Promo cards ---------- */
.promo-card { display: flex; flex-direction: column; }
.promo-card .pc-tag {
  display: inline-block; align-self: flex-start;
  background: linear-gradient(135deg, var(--red), var(--red-2)); color: #fff;
  font-size: 11.5px; font-weight: 700; font-family: var(--font-display);
  padding: 4px 11px; border-radius: 20px; letter-spacing: 0.6px; text-transform: uppercase;
  margin-bottom: 14px;
}
.promo-card .pc-value { font-family: var(--font-display); font-size: 30px; font-weight: 900; color: var(--gold); line-height: 1.1; margin-bottom: 6px; }
.promo-card ul { list-style: none; margin: 14px 0 18px; }
.promo-card ul li { font-size: 13.5px; color: var(--text-2); padding: 5px 0 5px 24px; position: relative; border-bottom: 1px dashed rgba(255,255,255,0.07); }
.promo-card ul li::before { content: '✓'; position: absolute; left: 2px; color: var(--green); font-weight: 700; }
.promo-card .btn { margin-top: auto; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--card-border); border-radius: 12px; margin-bottom: 12px; background: var(--card); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  transition: color 0.18s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; color: var(--gold); font-weight: 400;
  transition: transform 0.2s var(--ease-out); flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-item .faq-a { padding: 0 22px 20px; color: var(--text-2); font-size: 15px; }

/* ---------- Article ---------- */
.article-hero { padding: 48px 0 0; }
.article-hero h1 { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -0.5px; margin: 14px 0 16px; }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--text-3); font-size: 13.5px; margin-bottom: 26px; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-img { border-radius: 18px; border: 1px solid rgba(245,197,66,0.22); box-shadow: 0 18px 50px rgba(0,0,0,0.45); margin-bottom: 36px; }
.article-body { max-width: 780px; margin: 0 auto; }
.article-body h2 { font-size: 26px; margin: 42px 0 16px; padding-left: 16px; border-left: 4px solid var(--gold); letter-spacing: -0.3px; }
.article-body h3 { font-size: 20px; margin: 30px 0 12px; color: #ffd970; font-weight: 700; }
.article-body p { color: #cfccc2; margin-bottom: 18px; font-size: 16.5px; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; color: #cfccc2; }
.article-body li { margin-bottom: 9px; }
.article-body strong { color: var(--text); }
.article-body table { width: 100%; border-collapse: collapse; margin: 22px 0 26px; font-size: 14.5px; display: block; overflow-x: auto; }
.article-body table thead { display: table-header-group; }
.article-body table, .article-body tbody, .article-body thead { width: 100%; }
.article-body table { display: table; }
.article-body th, .article-body td { padding: 11px 14px; border: 1px solid rgba(255,255,255,0.09); text-align: left; }
.article-body th { background: rgba(245,197,66,0.1); color: var(--gold); font-family: var(--font-display); }
.article-body td { color: #cfccc2; }

.callout {
  border: 1px solid rgba(245, 197, 66, 0.3); border-left: 4px solid var(--gold);
  background: var(--gold-soft); border-radius: 10px;
  padding: 18px 22px; margin: 26px 0; font-size: 15px; color: var(--text);
}
.callout.warn { border-color: rgba(225, 50, 45, 0.4); border-left-color: var(--red); background: rgba(225, 50, 45, 0.08); }
.callout.info { border-color: rgba(59, 130, 246, 0.4); border-left-color: var(--blue); background: rgba(59, 130, 246, 0.08); }
.callout b, .callout strong { color: var(--gold); }
.callout.warn b, .callout.warn strong { color: #ff8a85; }

/* breadcrumb */
.breadcrumb { padding: 18px 0 0; font-size: 13px; color: var(--text-3); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: '›'; color: var(--text-3); margin-right: 2px; }
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current] { color: var(--gold); font-weight: 600; }

/* ---------- Tag cloud ---------- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cloud a {
  display: inline-block; padding: 7px 15px; border-radius: 20px;
  background: var(--card); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-2); font-size: 13px; font-weight: 600;
  transition: all 0.18s var(--ease-out);
}
.tag-cloud a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); transform: translateY(-2px); }
.tag-cloud a.t-lg { font-size: 14.5px; border-color: rgba(245,197,66,0.35); color: var(--gold); }

/* ---------- Search ---------- */
.search-box { display: flex; gap: 0; max-width: 560px; border-radius: 12px; overflow: hidden; border: 1.5px solid rgba(245,197,66,0.35); background: var(--bg-3); }
.search-box input {
  flex: 1; min-width: 0; background: transparent; border: none; outline: none;
  color: var(--text); padding: 13px 18px; font-size: 15px; font-family: var(--font-body);
}
.search-box input::placeholder { color: var(--text-3); }
.search-box button { border-radius: 0; }
.search-results { margin-top: 22px; }
.search-results .sr-item { padding: 14px 18px; border: 1px solid var(--card-border); border-radius: 10px; margin-bottom: 10px; background: var(--card); transition: all 0.18s; display: block; }
.search-results .sr-item:hover { border-color: rgba(245,197,66,0.4); }
.search-results .sr-item b { color: var(--gold); font-family: var(--font-display); display: block; margin-bottom: 3px; }
.search-results .sr-item span { color: var(--text-2); font-size: 13.5px; }
.search-results .sr-empty { color: var(--text-3); font-size: 14.5px; padding: 10px 4px; }

/* ---------- Game cards ---------- */
.game-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.game-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 0.35s var(--ease-out); }
.game-card:hover img { transform: scale(1.05); }
.game-card .gc-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.game-card .gc-cat { color: var(--gold); font-size: 11.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; font-family: var(--font-display); margin-bottom: 8px; }
.game-card h3 { font-size: 18px; margin-bottom: 8px; }
.game-card p { font-size: 14px; color: var(--text-2); margin-bottom: 16px; flex: 1; }

/* ---------- Forms (register/login) ---------- */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.auth-card { padding: 36px 34px; }
.auth-card h1 { font-size: 27px; margin-bottom: 8px; }
.auth-card .sub { color: var(--text-2); font-size: 14.5px; margin-bottom: 26px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-2); margin-bottom: 7px; }
.form-group input, .form-group select {
  width: 100%; background: var(--bg-3); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px 15px; color: var(--text); font-size: 15px;
  font-family: var(--font-body); outline: none; transition: border-color 0.18s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-hint { font-size: 12px; color: var(--text-3); margin-top: 5px; }
.auth-alt { text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-2); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, rgba(245,197,66,0.13), rgba(225,50,45,0.1)),
              var(--bg-2);
  border-top: 1px solid rgba(245,197,66,0.2); border-bottom: 1px solid rgba(245,197,66,0.2);
  padding: 56px 0; text-align: center;
}
.cta-band h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.cta-band p { color: var(--text-2); max-width: 620px; margin: 0 auto 26px; }

/* ---------- Reel divider ---------- */
.reel-divider {
  overflow: hidden; white-space: nowrap; padding: 13px 0;
  background: #070910; border-top: 1px solid rgba(245,197,66,0.15); border-bottom: 1px solid rgba(245,197,66,0.15);
}
.reel-track { display: inline-block; animation: reelScroll 30s linear infinite; }
.reel-track span {
  display: inline-block; margin: 0 22px; color: var(--text-3);
  font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 2.5px; text-transform: uppercase;
}
.reel-track span i { color: var(--gold); font-style: normal; margin-right: 22px; }
@keyframes reelScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Footer ---------- */
.site-footer { background: #070910; border-top: 1px solid rgba(245,197,66,0.18); padding: 56px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer-grid h4 { color: var(--gold); font-size: 15px; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 9px; }
.footer-grid ul a { color: var(--text-2); font-size: 14px; }
.footer-grid ul a:hover { color: var(--gold); }
.footer-brand p { color: var(--text-2); font-size: 13.5px; margin: 14px 0; max-width: 320px; }
.footer-badges { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.fbadge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 8px;
  padding: 6px 12px; font-size: 12px; color: var(--text-2); font-weight: 600;
}
.fbadge.red { border-color: rgba(225,50,45,0.5); color: #ff8a85; }
.fbadge.green { border-color: rgba(46,204,113,0.4); color: var(--green); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0 110px;
  color: var(--text-3); font-size: 12.5px; line-height: 1.7;
}
.footer-legal p { margin-bottom: 8px; }

/* ---------- Sticky bottom bar (slot style) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  background: linear-gradient(180deg, rgba(16, 20, 31, 0.96), rgba(7, 9, 16, 0.99));
  border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.6), 0 -2px 20px rgba(245, 197, 66, 0.18);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  overflow: hidden;
}
.sticky-cta .sc-inner { max-width: 720px; margin: 0 auto; display: flex; align-items: center; gap: 14px; position: relative; z-index: 2; }
.sticky-cta .sc-text { flex: 1; min-width: 0; display: flex; align-items: center; gap: 10px; }
.sticky-cta .sc-text img { width: 34px; height: 34px; animation: coinSpin 3.2s ease-in-out infinite; }
.sticky-cta .sc-text b { font-family: var(--font-display); font-size: 14.5px; display: block; line-height: 1.3; }
.sticky-cta .sc-text small { color: var(--text-2); font-size: 11.5px; display: block; line-height: 1.3; }
.sticky-cta .sc-btns { display: flex; gap: 10px; flex-shrink: 0; }
.sticky-cta .btn { white-space: nowrap; }
@keyframes coinSpin {
  0%, 100% { transform: rotateY(0deg) translateY(0); }
  50% { transform: rotateY(180deg) translateY(-3px); }
}
/* falling coins inside sticky bar */
.sticky-cta .sc-coin {
  position: absolute; top: -14px; width: 11px; height: 11px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe9a8, var(--gold) 50%, #a87c00);
  opacity: 0.75; z-index: 1;
  animation: coinFall linear infinite;
}
@keyframes coinFall {
  0% { transform: translateY(-16px) rotate(0deg); opacity: 0; }
  12% { opacity: 0.8; }
  100% { transform: translateY(90px) rotate(320deg); opacity: 0; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: radial-gradient(900px 320px at 50% 0%, rgba(245, 197, 66, 0.1), transparent 65%), var(--bg-2);
  border-bottom: 1px solid rgba(245,197,66,0.14);
  padding: 44px 0 40px;
}
.page-hero h1 { font-size: clamp(27px, 3.4vw, 40px); letter-spacing: -0.4px; margin-top: 10px; }
.page-hero .lead { color: var(--text-2); margin-top: 12px; max-width: 720px; font-size: 16px; }

/* ---------- Utility ---------- */
.text-gold { color: var(--gold); }
.mt-40 { margin-top: 40px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.two-col img { border-radius: 16px; border: 1px solid rgba(245,197,66,0.22); box-shadow: 0 16px 44px rgba(0,0,0,0.4); }
.check-list { list-style: none; }
.check-list li { padding: 8px 0 8px 30px; position: relative; color: #cfccc2; font-size: 15.5px; }
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--gold-soft); border: 1px solid rgba(245,197,66,0.4);
  color: var(--gold); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* entrance animation */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { animation: fadeUp 0.6s var(--ease-out) both; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
}
@media (prefers-reduced-motion: reduce) {
  .coin, .sticky-cta .sc-coin, .reel-track, .sticky-cta .sc-text img { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pay-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 44px; padding-bottom: 52px; }
  .hero-img { order: -1; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .main-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(7, 9, 16, 0.98); border-bottom: 1px solid rgba(245,197,66,0.25);
    padding: 14px 20px 18px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { padding: 12px 14px; font-size: 15.5px; }
  .nav-toggle { display: flex; }
  .header-actions .btn-outline { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .section { padding: 52px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta .sc-text small { display: none; }
  .sticky-cta .sc-text b { font-size: 12.5px; }
  .sticky-cta .btn { padding: 9px 16px; font-size: 13.5px; }
  .auth-card { padding: 28px 22px; }
  .topbar .tb-right { display: none; }
}
