/* ═══════════════════════════════════════════════════════════════
   style.css — Ice Casino PL | icecasino24.pl
   Accent: #00d4ff (Ice Blue)
   ═══════════════════════════════════════════════════════════════ */

/* ── Brand Colors (Light Theme) ── */
:root {
  --accent:        #0066ff;
  --accent-hover:  #0052cc;
  --accent-dark:   #004099;
  --accent-glow:   rgba(0, 102, 255, 0.15);
  --accent-subtle: rgba(0, 102, 255, 0.08);
  --bg:            #f8f9fa;
  --bg2:           #ffffff;
  --card:          #ffffff;
  --card2:         #f1f5f9;
  --border:        #e2e8f0;
  --border-strong: #cbd5e0;
  --text:          #334155;
  --text-muted:    #475569;
  --text-dim:      #64748b;
  --white:         #0f172a; /* Re-purposed for dark headings */
  --true-white:    #ffffff;
  --green:         #10b981;
  --gold:          #f59e0b;
  --red:           #ef4444;
  --radius:        10px;
  --radius-lg:     16px;
  --shadow:        0 4px 24px rgba(0,0,0,0.06);
  --shadow-glow:   0 0 30px rgba(0, 102, 255, 0.15);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
ul { list-style: none; }

/* ── Trust Bar (top strip) ── */
.trust-bar {
  background: rgba(0,212,255,0.08);
  border-bottom: 1px solid var(--border);
  padding: 7px 16px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.trust-bar span {
  margin: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.trust-bar span::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}
@media (max-width: 768px) {
  .trust-bar {
    display: none;
  }
}

/* ── CTA Button ── */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, #0052cc 100%);
  color: var(--true-white);
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(0,102,255,0.3);
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  border-radius: inherit;
}
.cta-btn:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  box-shadow: 0 6px 30px rgba(0,102,255,0.4);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--true-white);
}
.cta-btn-lg { padding: 18px 44px; font-size: 1.15rem; }
.cta-btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.cta-wrapper { text-align: center; margin: 24px 0; }

/* ── Header & Navigation ── */
header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(0,212,255,0.5);
  text-decoration: none;
}
.logo span { color: var(--white); }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: var(--accent-subtle);
  text-decoration: none;
}
.nav-cta {
  background: linear-gradient(135deg, var(--accent), #0052cc);
  color: var(--true-white) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
}
.nav-cta:hover {
  opacity: 0.9;
  color: var(--true-white) !important;
  background: var(--accent-hover) !important;
}

/* ── Burger ── */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .burger { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(6,13,31,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; font-size: 1rem; border-radius: var(--radius); }
  .nav-cta { text-align: center; margin-top: 8px; }
}

/* ── Layout ── */
main { max-width: 1160px; margin: 0 auto; padding: 32px 20px; }
section { margin-bottom: 56px; }

/* ── Typography ── */
h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
h1 .accent { color: var(--accent); }
h2 {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  letter-spacing: -0.01em;
}
h2 .accent { color: var(--accent); }
h3 {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
p { margin-bottom: 14px; color: var(--text); }
strong { color: var(--white); font-weight: 700; }

/* ── Hero ── */
.hero {
  background: radial-gradient(circle at 50% 50%, rgba(255,230,240,0.6) 0%, rgba(240,245,255,0.8) 50%, rgba(255,255,255,1) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
}
.hero-content {
  flex: 1;
  max-width: 48%;
}
.hero-image {
  flex: 1;
  max-width: 52%;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0,212,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(0,100,180,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge-top {
  display: inline-block;
  background: linear-gradient(90deg, #d345ff, #8a2be2);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); text-align: left; margin-bottom: 20px;}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 28px 0;
  text-align: left;
}
.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}
.hero-badge {
  background: var(--accent-subtle);
  border: 1px solid var(--border-strong);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

/* ── Brand Banner ── */
.brand-banner {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.brand-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ── Bonus Card (hero bonus display) ── */
.bonus-hero-card {
  background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(0,100,200,0.08) 100%);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.bonus-hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.bonus-amount {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
  text-shadow: 0 0 30px rgba(0,212,255,0.5);
}
.bonus-label {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.bonus-spins {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 8px;
}
.hero-terms {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 12px;
}

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content, .hero-image {
    max-width: 100%;
  }
  .hero h1, .hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badges {
    justify-content: center;
  }
}

/* ── Star Rating ── */
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.rating-score {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.rating-label { font-size: 0.9rem; color: var(--text-muted); }

/* ── Info Grid ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.info-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.info-card .icon { font-size: 2rem; margin-bottom: 10px; }
.info-card .val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.info-card .lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Tables ── */
table { width: 100%; border-collapse: collapse; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; }
thead { background: rgba(0,212,255,0.1); }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
th { color: var(--accent); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; }
td { color: var(--text); font-size: 0.95rem; }
tr:hover td { background: rgba(0,212,255,0.04); }
td:first-child { font-weight: 600; color: var(--white); }
td .yes { color: var(--green); font-weight: 700; }
td .no { color: var(--red); }

@media (max-width: 600px) {
  table, thead, tbody, th, td, tr { display: block; }
  thead tr { display: none; }
  td { padding: 10px 14px; border-bottom: none; }
  td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--accent);
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
  }
  tr {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
  }
}

/* ── Highlight Box ── */
.highlight-box {
  background: rgba(0,212,255,0.06);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box.gold {
  background: rgba(255,215,0,0.06);
  border-left-color: var(--gold);
}
.highlight-box.green {
  background: rgba(0,230,118,0.06);
  border-left-color: var(--green);
}

/* ── Steps List ── */
.steps-list { list-style: none; counter-reset: steps; }
.steps-list li {
  counter-increment: steps;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.steps-list li:hover { border-color: var(--border-strong); }
.steps-list li::before {
  content: counter(steps);
  min-width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #060d1f;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.steps-list li strong { display: block; margin-bottom: 4px; font-size: 1rem; }

/* ── Pros & Cons ── */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.pros-box, .cons-box {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.pros-box { border-top: 3px solid var(--green); }
.cons-box { border-top: 3px solid var(--red); }
.pros-box h3 { color: var(--green); }
.cons-box h3 { color: var(--red); }
.pros-box li, .cons-box li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pros-box li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons-box li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.pros-box li:last-child, .cons-box li:last-child { border-bottom: none; }

@media (max-width: 640px) {
  .pros-cons-grid { grid-template-columns: 1fr; }
}

/* ── Game Cards Grid ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 8px 24px rgba(0,212,255,0.15);
}
.game-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.game-card-body { padding: 10px 12px; }
.game-card-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-provider { font-size: 0.76rem; color: var(--text-muted); margin-top: 2px; }
.rtp-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,212,255,0.9);
  color: #060d1f;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 50px;
}
.game-card .play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.game-card:hover .play-overlay { opacity: 1; }
.play-btn {
  background: var(--accent);
  color: #060d1f;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
}

@media (max-width: 400px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Provider Strip ── */
.providers-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}
.provider-badge {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.provider-badge:hover {
  border-color: var(--border-strong);
  color: var(--accent);
  background: var(--accent-subtle);
}

/* ── Payment Methods ── */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.payment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.payment-card:hover {
  border-color: var(--border-strong);
  color: var(--accent);
}
.payment-card .pm-icon { font-size: 1.4rem; margin-bottom: 6px; }

/* ── FAQ Accordion ── */
details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
details[open] { border-color: var(--border-strong); }
summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  background: var(--card);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
  user-select: none;
  transition: background 0.2s;
}
summary:hover { background: var(--card2); }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 12px;
}
details[open] summary::after { content: '−'; }
details[open] summary { background: var(--card2); }
.faq-answer {
  padding: 16px 20px;
  background: rgba(0,212,255,0.03);
  border-top: 1px solid var(--border);
}
.faq-answer p { margin-bottom: 8px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ── Bonus Code Box ── */
.code-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin: 20px 0;
}
.code-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  font-family: 'Courier New', monospace;
  letter-spacing: 3px;
}
.code-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.code-auto {
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 600;
}

/* ── Section Header with Icon ── */
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-subtle);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── Crash Game Cards ── */
.crash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.crash-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.crash-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 12px 32px rgba(0,212,255,0.15);
}
.crash-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.crash-card-body { padding: 14px 16px; }
.crash-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.crash-card-provider {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.multiplier-badge {
  background: linear-gradient(135deg, #ff6b00, #ff9900);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  margin-top: 8px;
  display: inline-block;
}

/* ── Footer ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 20px 28px;
  text-align: center;
  margin-top: 64px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 16px 0;
}
.footer-nav a {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 50px;
  transition: all 0.2s;
}
.footer-nav a:hover {
  color: var(--accent);
  background: var(--accent-subtle);
  text-decoration: none;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 800px;
  margin: 16px auto 0;
}
.footer-disclaimer a { color: var(--text-dim); text-decoration: underline; }
.footer-age {
  display: inline-block;
  border: 2px solid var(--text-dim);
  color: var(--text-dim);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* ── Mobile Sticky CTA Bar ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--accent) 0%, #0099cc 100%);
  padding: 12px 16px 16px;
  z-index: 300;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,212,255,0.4);
}
.mobile-cta-bar a {
  color: #060d1f;
  font-weight: 800;
  text-decoration: none;
  display: block;
}
.mcta-bonus {
  font-size: 1.05rem;
  font-weight: 900;
  display: block;
  letter-spacing: 0.01em;
}
.mcta-sub {
  font-size: 0.7rem;
  color: rgba(6,13,31,0.65);
  display: block;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 76px; }
  .hero { padding: 32px 20px; }
  .bonus-hero-card { padding: 22px 20px; }
  main { padding: 24px 16px; }
  section { margin-bottom: 40px; }
}

/* ── Responsive Images ── */
@media (max-width: 480px) {
  .cta-btn { width: 100%; display: block; padding: 16px; }
  .brand-banner { border-radius: 6px; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Utility ── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.card-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}
