/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #F5A623;
  --gold-dark: #D4891A;
  --gold-light: #FFD166;
  --teal: #4FC3F7;
  --teal-dark: #2196F3;
  --bg-dark: #0A1628;
  --bg-mid: #0D1E36;
  --bg-card: #112240;
  --bg-card-hover: #162D50;
  --bg-surface: #162B44;
  --text-primary: #F0F4FF;
  --text-secondary: #A8BDD4;
  --text-muted: #637A92;
  --green-pos: #22C55E;
  --red-neg: #F87171;
  --border: rgba(79, 195, 247, 0.15);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 20px rgba(245, 166, 35, 0.25);
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-w: 1240px;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--gold); }

img { display: block; max-width: 100%; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0A1628;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 22px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-gold);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.45);
}
.btn-cta:active { transform: translateY(0); }

.btn-hero {
  font-size: 16px;
  padding: 14px 32px;
}
.btn-large {
  font-size: 18px;
  padding: 18px 44px;
}

.btn-signin {
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-signin:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== TOP BONUS BANNER ===== */
.top-bonus-banner {
  background: linear-gradient(90deg, #0D1E36 0%, #0F2A48 40%, #0D1E36 100%);
  border-bottom: 2px solid var(--gold);
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.tbb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.tbb-text {
  color: var(--text-primary);
  font-size: 14px;
}
.tbb-text strong { color: var(--gold); }

/* ===== HEADER ===== */
.site-header {
  background: #080F1F;
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  position: sticky;
  top: 41px;
  z-index: 999;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.logo { display: flex; align-items: center; }
.logo-svg { height: 44px; width: auto; }

.main-nav {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== CATEGORY NAV ===== */
.category-nav {
  background: #0D1B2E;
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 4px;
  padding: 8px 0;
  white-space: nowrap;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 18px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid transparent;
  text-decoration: none;
}
.cat-item:hover {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--text-primary);
}
.cat-icon { font-size: 20px; }

/* ===== HERO SECTION ===== */
.hero-section {
  padding: 30px 20px;
  background: linear-gradient(180deg, #0A1628 0%, #0D1B2A 100%);
}
.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.hero-card {
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  justify-content: flex-end;
}
.hero-card--main {
  background: linear-gradient(135deg, #1a2a0a 0%, #2d4a10 50%, #1a3206 100%);
  border: 1px solid rgba(100,200,50,0.3);
}
.hero-card--welcome {
  background: linear-gradient(135deg, #0a1a2a 0%, #0d2a3a 50%, #062030 100%);
  border: 1px solid rgba(79,195,247,0.3);
}
.hero-card--wednesday {
  background: linear-gradient(135deg, #1a0a00 0%, #2a1800 50%, #1a0d00 100%);
  border: 1px solid rgba(245,166,35,0.3);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(245,166,35,0.2);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(245,166,35,0.4);
  width: fit-content;
}
.hero-card h1 {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 600;
}
.hero-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-amount {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
}

/* ===== SECTIONS GENERAL ===== */
section { padding: 60px 0; }
section:nth-child(even) { background: var(--bg-mid); }

h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.25;
}
h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  margin-top: 32px;
}
h3:first-child { margin-top: 0; }
p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}
p:last-child { margin-bottom: 0; }

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.stat-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== BONUS CARDS ===== */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.bonus-card:hover {
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-3px);
}
.bonus-card-icon { font-size: 28px; }
.bonus-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}
.bonus-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.bonus-wager-box {
  background: linear-gradient(135deg, #0f1e36 0%, #162b44 100%);
  border: 1px solid rgba(245,166,35,0.3);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 32px;
}
.bonus-wager-box h3 {
  color: var(--gold);
  margin: 0 0 14px;
}

/* ===== MID BANNER ===== */
.mid-banner {
  background: linear-gradient(90deg, #0A1628 0%, #162B44 50%, #0A1628 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 24px 20px;
}
.mid-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mid-banner-text {
  font-size: 16px;
  color: var(--text-primary);
}
.mid-banner-text strong { color: var(--gold); }

/* ===== PROVIDER GRID ===== */
.provider-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}
.provider-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  transition: border-color 0.15s, background 0.15s;
}
.provider-tag:hover {
  border-color: var(--teal);
  background: rgba(79,195,247,0.08);
}

/* ===== CATEGORY CARDS ===== */
.category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, transform 0.2s;
}
.cat-card:hover {
  border-color: rgba(79,195,247,0.4);
  transform: translateY(-3px);
}
.cat-card-icon { font-size: 26px; }
.cat-card h3 {
  font-size: 15px;
  color: var(--teal);
  margin: 0;
}
.cat-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ===== TOP GAMES LIST ===== */
.top-games-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.tg-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  transition: border-color 0.15s;
}
.tg-item:hover { border-color: var(--gold); }
.tg-rank {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.5;
  min-width: 36px;
  font-variant-numeric: tabular-nums;
}
.tg-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tg-info strong {
  font-size: 15px;
  color: var(--text-primary);
}
.tg-info span {
  font-size: 12px;
  color: var(--text-muted);
}
.tg-rtp {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-pos);
  background: rgba(34,197,94,0.1);
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ===== LIVE FEATURES ===== */
.live-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.live-feat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
}
.live-feat:hover { border-color: rgba(79,195,247,0.4); }
.live-feat-icon { font-size: 32px; }
.live-feat h3 {
  color: var(--teal);
  font-size: 17px;
  margin: 0;
}
.live-feat p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

/* ===== TABLES ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin: 28px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) transparent;
}
.table-wrap::-webkit-scrollbar { height: 6px; }
.table-wrap::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

.payments-table,
.wins-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
.payments-table thead tr,
.wins-table thead tr {
  background: var(--bg-surface);
}
.payments-table th,
.wins-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  white-space: nowrap;
}
.payments-table td,
.wins-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
}
.payments-table tbody tr:hover,
.wins-table tbody tr:hover {
  background: var(--bg-card);
}
.payments-table td:first-child,
.wins-table td:first-child {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== MOBILE POINTS ===== */
.mobile-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.mobile-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}
.mp-icon { font-size: 28px; min-width: 36px; }
.mobile-point div { flex: 1; }
.mobile-point strong {
  display: block;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.mobile-point p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

/* ===== SUPPORT CHANNELS ===== */
.support-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.support-channel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.support-channel:hover {
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-3px);
}
.sc-icon { font-size: 32px; }
.support-channel h3 {
  color: var(--gold);
  font-size: 16px;
  margin: 0;
}
.support-channel p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ===== RESPONSIBLE GAMBLING ===== */
.rg-tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.rg-tool {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}
.rg-tool h3 {
  color: var(--teal);
  font-size: 16px;
  margin: 0 0 10px;
}
.rg-tool p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

/* ===== PROS CONS ===== */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.pros-box, .cons-box {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.pros-box {
  background: linear-gradient(135deg, #0a1e0a 0%, #102510 100%);
  border: 1px solid rgba(34,197,94,0.3);
}
.cons-box {
  background: linear-gradient(135deg, #1e0a0a 0%, #251010 100%);
  border: 1px solid rgba(248,113,113,0.3);
}
.pros-box h3 { color: var(--green-pos); margin: 0 0 16px; }
.cons-box h3 { color: var(--red-neg); margin: 0 0 16px; }
.pros-box ul, .cons-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pros-box li, .cons-box li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.pros-box li::before {
  content: "✓";
  color: var(--green-pos);
  font-weight: 700;
  position: absolute;
  left: 0;
}
.cons-box li::before {
  content: "•";
  color: var(--red-neg);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* ===== TOURNAMENT TIPS ===== */
.tournament-tips {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tournament-tips h3 {
  color: var(--gold);
  margin: 0 0 6px;
}
.ttip {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  line-height: 1.65;
}
.ttip strong { color: var(--text-primary); }

/* ===== FAQ SECTION ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item:hover { border-color: rgba(245,166,35,0.3); }
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  line-height: 1.4;
  font-family: var(--font-main);
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-arrow {
  font-size: 12px;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #060e1a 100%);
}
.bottom-cta-box {
  background: linear-gradient(135deg, #0d1e36 0%, #162b44 50%, #0d1e36 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.bottom-cta-box h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-primary);
  margin: 0;
}
.bottom-cta-box p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0;
}
.bottom-cta-bonus {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}
.disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #050D1A;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo-svg { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.rg-note {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-legal h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-legal p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .bonus-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h2 { font-size: 22px; }
  h3 { font-size: 16px; }

  .top-bonus-banner { padding: 8px 16px; }
  .tbb-inner { gap: 12px; justify-content: space-between; }
  .tbb-text { font-size: 12px; }

  .site-header { top: 52px; }
  .header-inner { height: 56px; gap: 12px; }
  .main-nav { display: none; }
  .logo-svg { height: 36px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-card { min-height: 160px; padding: 22px 20px; }
  .hero-card h1 { font-size: 22px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 26px; }

  .bonus-cards { grid-template-columns: 1fr; }

  .mid-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .category-cards { grid-template-columns: 1fr; }
  .live-features { grid-template-columns: 1fr; }

  .support-channels { grid-template-columns: 1fr; }
  .rg-tools { grid-template-columns: 1fr; }

  .pros-cons-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  section { padding: 40px 0; }

  .bottom-cta-box {
    padding: 32px 20px;
  }
  .bottom-cta-box h2 { font-size: 22px; }
  .btn-large { font-size: 15px; padding: 14px 30px; }

  .faq-question { font-size: 14px; padding: 16px 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }
}

@media (max-width: 480px) {
  .header-actions .btn-signin { display: none; }
  .tbb-inner { gap: 8px; }
  .tbb-text { font-size: 11px; }
  .hero-card--main h1 { font-size: 20px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-block { padding: 18px 14px; }
  .stat-num { font-size: 22px; }
}
