/* ====================================
   JUGABET-CASINO-CL.COM — style.css
   Brand: #FF9D00 orange / #0D0E1A dark / #63AEE6 blue
   ==================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF9D00;
  --orange-dark: #CC7A00;
  --orange-glow: rgba(255,157,0,0.18);
  --amber: #A55519;
  --blue: #63AEE6;
  --blue-dark: #3A8BC4;
  --bg: #0D0E1A;
  --bg2: #111325;
  --card: #16172B;
  --card2: #1C1E35;
  --border: rgba(255,157,0,0.14);
  --border2: rgba(99,174,230,0.14);
  --text: #FFFFFF;
  --muted: rgba(255,255,255,0.5);
  --muted2: rgba(255,255,255,0.3);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-orange: 0 0 20px rgba(255,157,0,0.25);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; line-height: 1.2; }
.section-header p { color: var(--muted); font-size: 16px; margin-top: 10px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
p { color: rgba(255,255,255,0.8); }

.gradient-text {
  background: linear-gradient(90deg, #FF9D00, #FFD060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blue-text { color: var(--blue); }
.orange-text { color: var(--orange); }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid rgba(255,157,0,0.25);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 12px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #FF9D00, #FF7400);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,157,0,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(255,157,0,0.5); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-blue {
  background: linear-gradient(135deg, #63AEE6, #3A8BC4);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99,174,230,0.3);
}
.btn-blue:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: #000; }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,14,26,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo img { height: 44px; width: auto; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}
.header-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 11px;
  border-radius: 8px;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a[aria-current="page"] {
  color: var(--orange);
  background: var(--orange-glow);
}
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--orange); }
.mob-cta {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.mob-cta .btn { flex: 1; justify-content: center; }

/* ---- HERO SPLIT ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,157,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(99,174,230,0.06) 0%, transparent 50%),
              var(--bg);
  padding: 80px 0;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 { margin-bottom: 20px; }
.hero-content p { font-size: 17px; margin-bottom: 32px; color: rgba(255,255,255,0.7); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat {}
.hero-stat .num { font-size: 24px; font-weight: 800; color: var(--orange); }
.hero-stat .lbl { font-size: 12px; color: var(--muted); margin-top: 2px; }
.hero-visual { position: relative; z-index: 2; }
.hero-visual img, .hero-visual svg { width: 100%; height: auto; }
.hero-badge {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}
.hero-badge .icon { font-size: 22px; }
.hero-badge .label { font-size: 12px; color: var(--muted); }
.hero-badge .value { font-size: 16px; font-weight: 700; color: var(--orange); }

/* ---- CARDS ---- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(255,157,0,0.35); transform: translateY(-3px); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--orange-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.card-icon.blue { background: rgba(99,174,230,0.12); }
.card h3 { margin-bottom: 8px; font-size: 17px; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---- GRIDS ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---- TABLES ---- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--border); }
.data-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table thead th {
  background: var(--card2);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85);
  vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: rgba(255,157,0,0.04); }
.td-name { font-weight: 600; }
.td-num { font-weight: 700; color: var(--orange); }
.td-blue { font-weight: 700; color: var(--blue); }
.td-green { font-weight: 700; color: #2ECC71; }
.td-muted { color: var(--muted); }
.td-center { text-align: center; }

/* ---- BADGES / PILLS ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}
.badge-orange { background: rgba(255,157,0,0.15); color: var(--orange); border: 1px solid rgba(255,157,0,0.25); }
.badge-blue { background: rgba(99,174,230,0.15); color: var(--blue); border: 1px solid rgba(99,174,230,0.25); }
.badge-green { background: rgba(46,204,113,0.12); color: #2ECC71; border: 1px solid rgba(46,204,113,0.2); }
.badge-red { background: rgba(231,76,60,0.12); color: #E74C3C; border: 1px solid rgba(231,76,60,0.2); }
.badge-live { background: #E74C3C; color: #fff; animation: pulse-red 1.4s infinite; }
@keyframes pulse-red { 0%,100%{ box-shadow: 0 0 0 0 rgba(231,76,60,0.5); } 50%{ box-shadow: 0 0 0 6px rgba(231,76,60,0); } }

/* ---- BAR CHART ---- */
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-item {}
.bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.bar-lbl { font-size: 13px; color: var(--muted); flex: 0 0 140px; font-weight: 500; }
.bar-val { font-size: 13px; font-weight: 700; color: var(--orange); margin-left: auto; flex-shrink: 0; }
.bar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.07); border-radius: 50px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 50px; width: 0%; transition: width 1.2s cubic-bezier(.25,.8,.25,1); }
.bar-fill.orange { background: linear-gradient(90deg, #FF9D00, #FFCC00); }
.bar-fill.blue { background: linear-gradient(90deg, #63AEE6, #3A8BC4); }
.bar-fill.green { background: linear-gradient(90deg, #2ECC71, #27AE60); }
.bar-fill.red { background: linear-gradient(90deg, #E74C3C, #C0392B); }
.bar-fill.purple { background: linear-gradient(90deg, #9B59B6, #8E44AD); }

/* ---- DONUT / RING ---- */
.donut-wrap { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.donut-svg { flex-shrink: 0; }
.svg-ring { transform: rotate(-90deg); }
.donut-legend { display: flex; flex-direction: column; gap: 12px; }
.legend-item { display: flex; align-items: center; gap: 10px; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.legend-label { font-size: 13px; color: var(--muted); }
.legend-val { font-size: 13px; font-weight: 700; margin-left: auto; padding-left: 16px; }

/* ---- STEPS ---- */
.steps-list { display: flex; flex-direction: column; gap: 24px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF9D00, #FF7400);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #000;
  box-shadow: 0 4px 16px rgba(255,157,0,0.3);
}
.step-body h4 { margin-bottom: 4px; font-size: 16px; }
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  user-select: none;
  gap: 12px;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--card2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform 0.25s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange-glow); border-color: var(--orange); color: var(--orange); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  background: linear-gradient(135deg, var(--card), var(--card2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF9D00, #FF7400);
}
.highlight-box .big-num { font-size: 36px; font-weight: 900; color: var(--orange); line-height: 1; }
.highlight-box .big-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ---- BONUS CARD ---- */
.bonus-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-orange); }
.bonus-card::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,157,0,0.06);
}
.bonus-amount { font-size: 38px; font-weight: 900; color: var(--orange); line-height: 1; }
.bonus-type { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.bonus-tag {
  display: inline-block;
  background: rgba(255,157,0,0.12);
  color: var(--orange);
  border: 1px solid rgba(255,157,0,0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  margin-bottom: 16px;
}

/* ---- COMPARE TABLE ---- */
.compare-wrap { display: flex; flex-direction: column; gap: 16px; }
.compare-row { display: flex; align-items: center; gap: 14px; }
.compare-lbl { font-size: 13px; font-weight: 600; flex: 0 0 160px; }
.compare-track { flex: 1; height: 10px; background: rgba(255,255,255,0.07); border-radius: 50px; overflow: hidden; position: relative; }
.compare-fill { height: 100%; border-radius: 50px; width: 0%; transition: width 1.2s cubic-bezier(.25,.8,.25,1); }
.compare-fill.a { background: linear-gradient(90deg, #FF9D00, #FFCC00); }
.compare-fill.b { background: linear-gradient(90deg, #63AEE6, #3A8BC4); }
.compare-val { font-size: 13px; font-weight: 700; color: var(--orange); flex-shrink: 0; width: 44px; text-align: right; }

/* ---- GAUGE / PROGRESS RING ---- */
.ring-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ring-wrap .ring-label { font-size: 13px; color: var(--muted); text-align: center; }
.ring-wrap .ring-val { font-size: 15px; font-weight: 800; color: var(--orange); }

/* ---- PAYMENT METHOD CARD ---- */
.pay-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}
.pay-card:hover { border-color: rgba(255,157,0,0.3); }
.pay-icon { font-size: 36px; }
.pay-name { font-weight: 700; font-size: 16px; }
.pay-detail { font-size: 12px; color: var(--muted); }
.pay-time { font-size: 12px; color: var(--blue); font-weight: 600; }

/* ---- VIP TIER ---- */
.vip-wrap { display: flex; gap: 0; }
.vip-tier {
  flex: 1;
  text-align: center;
  padding: 20px 14px;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
}
.vip-tier:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.vip-tier:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.vip-tier + .vip-tier { border-left: none; }
.vip-tier.active { background: var(--orange-glow); border-color: var(--orange); z-index: 1; }
.vip-icon { font-size: 28px; margin-bottom: 8px; }
.vip-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.vip-pts { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ---- NOTIFICATION / ALERT ---- */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border-left: 3px solid;
  font-size: 14px;
}
.alert-info { background: rgba(99,174,230,0.08); border-color: var(--blue); color: rgba(255,255,255,0.8); }
.alert-warning { background: rgba(255,157,0,0.08); border-color: var(--orange); color: rgba(255,255,255,0.8); }
.alert-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

/* ---- COUNTER NUMBERS ---- */
[data-count] { display: inline-block; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {}
.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  color: var(--muted);
  transition: all 0.2s;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: #000; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted2); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--orange); }
.footer-disclaimer {
  padding: 20px 0;
  font-size: 12px;
  color: var(--muted2);
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: var(--muted2);
  flex-wrap: wrap;
  gap: 10px;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #E74C3C;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

/* ---- GAME PROVIDER STRIP ---- */
.provider-strip { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }
.provider-pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}
.provider-pill:hover { border-color: var(--orange); color: var(--orange); }

/* ---- LIVE TICKER ---- */
.live-ticker {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.ticker-head {
  background: var(--card2);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.ticker-head span { font-size: 13px; font-weight: 600; }
.ticker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 12px;
}
.ticker-row:last-child { border-bottom: none; }
.ticker-match { font-size: 14px; font-weight: 600; flex: 1; }
.ticker-sport { font-size: 11px; color: var(--muted); }
.ticker-odds { display: flex; gap: 6px; }
.odd-btn {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-block;
}
.odd-btn:hover { background: var(--orange); color: #000; }

/* ---- STAT CARD ---- */
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.stat-card .num { font-size: 32px; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-card .sub { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ---- BLOG CARD ---- */
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.blog-card:hover { transform: translateY(-3px); border-color: rgba(255,157,0,0.3); }
.blog-thumb { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--card2); display: flex; align-items: center; justify-content: center; }
.blog-thumb svg, .blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; }
.blog-meta { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--muted); margin-bottom: 10px; }
.blog-body h3 { font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.blog-link { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--orange); text-decoration: none; }
.blog-link:hover { text-decoration: underline; }

/* ---- CTA STRIP ---- */
.cta-strip {
  background: linear-gradient(135deg, #1a1220, #0D0E1A);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,157,0,0.12) 0%, transparent 60%);
}
.cta-strip h2 { position: relative; z-index: 1; margin-bottom: 12px; }
.cta-strip p { position: relative; z-index: 1; margin-bottom: 28px; }
.cta-strip .btn { position: relative; z-index: 1; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .header-nav { gap: 0; }
  .header-nav a { font-size: 12.5px; padding: 8px 9px; }
}

@media (max-width: 960px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn-ghost { display: none; }
  .header-cta .btn-primary { padding: 8px 14px; font-size: 13px; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .vip-wrap { flex-wrap: wrap; }
  .vip-tier { flex: 0 0 calc(50% - 6px); }
  .vip-tier:first-child { border-radius: var(--radius) 0 0 0; }
  .vip-tier:last-child { border-radius: 0 0 var(--radius) 0; }
}

@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 52px 0; }
  .hero-stats { gap: 18px; }
  .hero-stat .num { font-size: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }
  .cta-strip { padding: 36px 20px; }
  .bar-lbl { flex: 0 0 100px; font-size: 12px; }
  .donut-wrap { flex-direction: column; align-items: flex-start; }
  .compare-lbl { flex: 0 0 110px; }
  .table-wrap { margin-left: -20px; margin-right: -20px; border-radius: 0; border-left: none; border-right: none; }
}

@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .section-header h2 { font-size: 20px; }
  .bonus-amount { font-size: 30px; }
  .vip-tier { flex: 0 0 100%; border-radius: 0 !important; }
  .vip-tier:first-child { border-radius: var(--radius) var(--radius) 0 0 !important; border-bottom: none; }
  .vip-tier:last-child { border-radius: 0 0 var(--radius) var(--radius) !important; border-top: none; }
  .mob-cta { flex-direction: column; }
}

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.gap-8 { gap: 8px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
html, body { overflow-x: hidden; }

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--orange);
  color: #000;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ---- FOCUS VISIBLE ---- */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 2px; }
.header-nav a:focus-visible { outline-offset: 4px; border-radius: 6px; }
.faq-question:focus-visible { outline-offset: -3px; }
.odd-btn:focus-visible { outline-offset: 2px; }

/* ---- PREFERS-REDUCED-MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: #16172B;
  border-top: 1px solid rgba(255,157,0,0.2);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.cookie-banner p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.cookie-banner p a { color: var(--orange); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner.hidden { display: none; }
@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* ================================================================
   MOBILE RESPONSIVE FIXES — comprehensive overrides
   ================================================================ */
html, body { overflow-x: hidden; max-width: 100%; }
img, picture, video, canvas, svg { max-width: 100%; height: auto; }
.container { box-sizing: border-box; }
.grid-2 > *, .grid-3 > *, .grid-4 > *, .grid-auto > * { min-width: 0; }

/* Tablet & below */
@media (max-width: 1024px) {
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 380px"],
  [style*="grid-template-columns: 1fr 380px"],
  [style*="grid-template-columns:1fr 420px"],
  [style*="grid-template-columns: 1fr 420px"],
  [style*="grid-template-columns:1fr 360px"],
  [style*="grid-template-columns: 1fr 360px"],
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* Phone */
@media (max-width: 768px) {
  .container { padding: 0 14px; }

  /* Stack all inline multi-column grids on phones */
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  /* But keep 4-col as 2-col */
  [style*="repeat(4,1fr)"],
  [style*="repeat(4, 1fr)"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"] { grid-template-columns: repeat(2,1fr) !important; }

  /* Hero typography & spacing */
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; line-height: 1.18; }
  .hero p, .hero .lead { font-size: .95rem; }
  .page-hero h1, h1 { font-size: clamp(1.4rem, 5.5vw, 1.9rem) !important; line-height: 1.2; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }

  /* Hero stats — wrap & shrink */
  .hero-stats, .stats-row { gap: 10px !important; flex-wrap: wrap !important; }
  .hero-stats > *, .stats-row > * { flex: 1 1 calc(50% - 10px) !important; min-width: 0; }
  .hero-stat .num { font-size: 18px !important; }

  /* Cards inner overflow protection */
  .card, .game-card, .stat-card, .bonus-card, .pay-card, .feature-card { min-width: 0; padding: 18px !important; }
  .card *, .game-card *, .stat-card * { max-width: 100%; word-wrap: break-word; overflow-wrap: break-word; }

  /* Tables — horizontal scroll */
  .table-wrap { overflow-x: auto !important; -webkit-overflow-scrolling: touch; }
  .data-table { font-size: .82rem; min-width: 480px; }
  .data-table th, .data-table td { padding: 8px 10px; }

  /* Charts/diagrams */
  .chart-wrap, .chart-box, canvas, .donut-wrap { max-width: 100% !important; height: auto !important; }
  .chart-wrap { padding: 14px !important; }
  .chart-wrap canvas { max-height: 280px !important; }
  .donut-wrap { flex-direction: column !important; align-items: stretch !important; }
  .bar-row { flex-wrap: wrap; gap: 6px; }
  .bar-lbl { flex: 1 1 100% !important; font-size: 12px !important; }
  .bar-val { font-size: 12px; }
  .compare-lbl { flex: 1 1 100% !important; font-size: 12px !important; }

  /* Big inline font-sizes — shrink */
  [style*="font-size:1.6rem"], [style*="font-size: 1.6rem"],
  [style*="font-size:1.8rem"], [style*="font-size: 1.8rem"],
  [style*="font-size:2rem"], [style*="font-size: 2rem"] {
    font-size: 1.3rem !important;
  }
  [style*="font-size:2.6rem"], [style*="font-size: 2.6rem"],
  [style*="font-size:3rem"], [style*="font-size: 3rem"],
  [style*="font-size:48px"], [style*="font-size: 48px"] {
    font-size: 1.8rem !important;
  }

  /* Hero CTAs */
  .hero-actions, .hero-ctas { flex-direction: column !important; gap: 10px !important; }
  .hero-actions > *, .hero-ctas > * { width: 100% !important; justify-content: center !important; }

  /* Bonus / VIP wrap */
  .vip-wrap { flex-direction: column !important; }
  .vip-tier { flex: 1 1 100% !important; border-radius: 0 !important; border-right: none !important; border-bottom: 1px solid var(--border) !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Author/avatar layouts */
  [style*="display:flex"][style*="gap:32px"],
  [style*="display:flex"][style*="gap:24px"][style*="align-items"] {
    flex-wrap: wrap !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .grid-4 { gap: 10px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  .data-table { font-size: .76rem; }
  .data-table th, .data-table td { padding: 7px 8px; }
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  .card, .game-card, .stat-card { padding: 14px !important; }
  .hero-stat .num { font-size: 16px !important; }
}

/* ---- PRINT ---- */
@media print {
  .site-header, .site-footer, .hamburger, .mobile-menu,
  .hero-actions, .cta-strip, .cookie-banner { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a { color: #000; text-decoration: underline; }
  .card, .highlight-box { border: 1px solid #ccc; }
  .section { padding: 20pt 0; }
}
