/* ============================================================
   MOSTBET ONLINE MX — Main Stylesheet
   Brand: Gold #FFD700, Orange #FF6B00, Dark #0A0E1A
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Oswald:wght@500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --gold: #FFD700;
  --gold-dark: #E6C200;
  --orange: #FF6B00;
  --orange-red: #E84D0E;
  --orange-dark: #CC5500;
  /* Mostbet brand blue */
  --blue: #1B3A6B;
  --blue-mid: #1E4A8A;
  --blue-light: #2A5CAA;
  --blue-glow: rgba(27,58,107,0.6);
  --bg: #0A0E1A;
  --bg-card: #0F1E35;
  --bg-card2: #142040;
  --text: #F0F4FF;
  --text-muted: #8B9BB4;
  --border: rgba(255,215,0,0.15);
  --border-blue: rgba(27,58,107,0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 20px rgba(255,215,0,0.25);
  --shadow-blue: 0 0 30px rgba(27,58,107,0.4);
  --font: 'Inter', sans-serif;
  --font-heading: 'Oswald', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  background-image: radial-gradient(ellipse at 80% 0%, rgba(27,58,107,0.25) 0%, transparent 60%),
                    radial-gradient(ellipse at 0% 100%, rgba(27,58,107,0.15) 0%, transparent 50%);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange); }

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--gold); color: #000;
  padding: 8px 16px; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ┌─────────────────────────────────────────────┐
   │  HEADER                                     │
   └─────────────────────────────────────────────┘ */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,16,30,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,58,107,0.5);
  box-shadow: 0 1px 20px rgba(27,58,107,0.3);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px; gap: 20px;
}
.logo {
  display: flex; align-items: center; gap: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1.55rem; font-weight: 700;
  color: #fff; letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}
.logo-m { color: #fff; }
.logo-star {
  width: 28px; height: 28px;
  display: inline-block;
  background: url('/images/favicon.png') center/cover no-repeat;
  border-radius: 50%;
  margin: 0 1px;
  vertical-align: middle;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}
.logo-stbet { color: #fff; }
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}
/* old logo-icon fallback */
.logo-icon {
  width: 28px; height: 28px;
  background: url('/images/favicon.png') center/cover no-repeat;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Desktop nav */
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: var(--text-muted); padding: 8px 14px;
  border-radius: 8px; font-size: .9rem; font-weight: 500;
  transition: all .2s; white-space: nowrap;
}
nav a:hover, nav a.active {
  color: var(--gold); background: rgba(255,215,0,0.08);
}

/* CTA button in header — TRACKER LINK */
.btn-header {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000 !important; font-weight: 700;
  padding: 10px 22px; border-radius: 30px;
  font-size: .9rem; white-space: nowrap;
  transition: all .2s; box-shadow: 0 2px 12px rgba(255,107,0,0.3);
  text-decoration: none !important;
}
.btn-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,107,0,0.5);
  color: #000 !important;
}

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all .3s; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(10,14,26,0.98); z-index: 999;
  flex-direction: column; padding: 30px 20px; gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); font-size: 1.1rem; font-weight: 500;
  padding: 14px 20px; border-radius: 10px;
  border: 1px solid var(--border); transition: all .2s;
}
.mobile-menu a:hover { background: rgba(255,215,0,0.08); color: var(--gold); }
.mobile-tracker {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000 !important; font-weight: 700;
  padding: 16px; border-radius: 12px;
  text-align: center; font-size: 1.1rem;
  display: block;
}

/* ┌─────────────────────────────────────────────┐
   │  HERO                                       │
   └─────────────────────────────────────────────┘ */
.hero {
  position: relative; overflow: hidden;
  min-height: 90vh; display: flex; align-items: center;
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #060d1a 0%, #0a1830 40%, #0f2045 100%);
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.35; position: absolute; inset: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(10,14,26,0.9) 40%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,215,0,0.1); border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold); padding: 6px 16px; border-radius: 30px;
  font-size: .85rem; font-weight: 600; margin-bottom: 24px;
}
.badge::before { content: '●'; font-size: .5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.15;
  color: #fff; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; max-width: 520px; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000; font-weight: 700; font-size: 1rem;
  padding: 16px 36px; border-radius: 50px;
  transition: all .25s; box-shadow: 0 4px 20px rgba(255,107,0,0.4);
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,0,0.5); color: #000; }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 2px solid rgba(255,255,255,0.2);
  font-weight: 600; font-size: 1rem;
  padding: 14px 32px; border-radius: 50px;
  transition: all .25s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* Stats in hero */
.hero-stats {
  display: flex; gap: 40px; margin-top: 50px;
  padding-top: 30px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-heading); font-size: 2rem; color: var(--gold); }
.hero-stat span { font-size: .85rem; color: var(--text-muted); }

/* ┌─────────────────────────────────────────────┐
   │  SECTIONS                                   │
   └─────────────────────────────────────────────┘ */
section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: #fff; margin-bottom: 12px;
}
.section-header h2 em { font-style: normal; color: var(--gold); }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.2); color: var(--gold);
  font-size: .8rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px;
  margin-bottom: 14px;
}

/* ── Cards ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all .25s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,215,0,0.35); box-shadow: var(--shadow-gold), var(--shadow-blue); }
.card-icon { width: 52px; height: 52px; border-radius: 12px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.card-icon.gold { background: rgba(255,215,0,0.12); }
.card-icon.orange { background: rgba(255,107,0,0.12); }
.card-icon.blue { background: rgba(59,130,246,0.12); }
.card-icon.green { background: rgba(34,197,94,0.12); }
.card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }

/* ── Banner section (image + content) ── */
.banner-section {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  margin: 0 20px;
}
.banner-section img { width: 100%; height: 420px; object-fit: cover; }
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,14,26,0.92) 40%, transparent);
  display: flex; align-items: center; padding: 0 60px;
}
.banner-text h2 { font-family: var(--font-heading); font-size: 2.4rem; color: #fff; margin-bottom: 14px; }
.banner-text h2 em { color: var(--gold); font-style: normal; }
.banner-text p { color: var(--text-muted); margin-bottom: 24px; max-width: 440px; }

/* ┌─────────────────────────────────────────────┐
   │  TABLES                                     │
   └─────────────────────────────────────────────┘ */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); }
table {
  width: 100%; border-collapse: collapse;
  font-size: .9rem; min-width: 500px;
}
caption {
  font-weight: 700; font-size: 1rem; color: var(--gold);
  text-align: left; padding: 14px 20px 10px;
  background: var(--bg-card2);
  border-radius: var(--radius) var(--radius) 0 0;
}
thead tr { background: rgba(255,215,0,0.08); }
th {
  padding: 14px 16px; text-align: left; font-weight: 700;
  color: var(--gold); font-size: .85rem; text-transform: uppercase;
  letter-spacing: .5px; border-bottom: 1px solid var(--border);
}
td { padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--text); }
tbody tr:hover { background: rgba(255,215,0,0.03); }
tbody tr:last-child td { border-bottom: none; }
.td-gold { color: var(--gold); font-weight: 700; }
.td-green { color: #4ade80; }
.td-orange { color: var(--orange); }
.td-badge {
  background: rgba(255,215,0,0.12); color: var(--gold);
  padding: 3px 10px; border-radius: 20px; font-size: .8rem; font-weight: 600;
  display: inline-block;
}

/* ┌─────────────────────────────────────────────┐
   │  CHARTS (CSS-based)                         │
   └─────────────────────────────────────────────┘ */
.chart-bar-section { background: var(--bg-card); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border); }
.chart-title { font-family: var(--font-heading); font-size: 1.2rem; color: #fff; margin-bottom: 24px; }
.bar-chart { display: flex; flex-direction: column; gap: 16px; }
.bar-item { display: flex; align-items: center; gap: 16px; }
.bar-label { min-width: 160px; font-size: .9rem; color: var(--text-muted); text-align: right; }
.bar-track { flex: 1; height: 28px; background: rgba(255,255,255,0.05); border-radius: 6px; overflow: hidden; position: relative; }
.bar-fill {
  height: 100%; border-radius: 6px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  display: flex; align-items: center; padding-right: 12px;
  justify-content: flex-end; transition: width 1s ease;
  font-size: .8rem; font-weight: 700; color: #000;
}
.bar-fill.blue { background: linear-gradient(90deg, #3b82f6, #60a5fa); color: #fff; }
.bar-fill.green { background: linear-gradient(90deg, #10b981, #4ade80); color: #000; }
.bar-fill.purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); color: #fff; }
.bar-fill.orange { background: linear-gradient(90deg, #FF6B00, #FFD700); color: #000; }
.card-icon.purple { background: rgba(139,92,246,0.12); }

/* Donut chart (CSS) */
.donut-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.donut-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); text-align: center; }
.donut-ring {
  width: 120px; height: 120px; margin: 0 auto 16px;
  border-radius: 50%; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.donut-value { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.donut-label { font-size: .85rem; color: var(--text-muted); margin-top: 6px; }

/* Progress bars */
.progress-section { display: flex; flex-direction: column; gap: 20px; }
.progress-item {}
.progress-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.progress-name { font-size: .9rem; color: var(--text); font-weight: 500; }
.progress-pct { font-size: .9rem; color: var(--gold); font-weight: 700; }
.progress-track { height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--orange)); }

/* ┌─────────────────────────────────────────────┐
   │  FEATURES / INFO BLOCKS                     │
   └─────────────────────────────────────────────┘ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.feature-item {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all .2s;
}
.feature-item:hover { border-color: rgba(255,215,0,0.3); }
.feature-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.feature-text h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.feature-text p { color: var(--text-muted); font-size: .85rem; line-height: 1.6; }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: #000;
}
.step-content h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-content p { color: var(--text-muted); font-size: .9rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: #fff; font-weight: 600; gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow { color: var(--gold); font-size: 1.2rem; transition: transform .3s; flex-shrink: 0; }
.faq-answer { padding: 0 24px 20px; color: var(--text-muted); font-size: .92rem; line-height: 1.7; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ── SEO content section ── */
.seo-content { background: var(--bg-card2); border-top: 1px solid var(--border); }
.seo-article h2 { font-family: var(--font-heading); font-size: 1.8rem; color: #fff; margin-bottom: 18px; }
.seo-article h3 { font-size: 1.15rem; color: var(--gold); font-weight: 700; margin: 24px 0 12px; }
.seo-article p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.seo-article p strong { color: var(--text); }
.text-link { color: var(--gold); text-decoration: underline; text-decoration-style: dashed; text-underline-offset: 3px; }
.text-link:hover { color: var(--orange); }

/* Related links (quick-links block — NOT counted as content links) */
.related-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.related-link {
  background: rgba(255,215,0,0.06); border: 1px solid rgba(255,215,0,0.2);
  color: var(--gold); padding: 8px 18px; border-radius: 30px;
  font-size: .88rem; font-weight: 600; transition: all .2s;
}
.related-link:hover { background: rgba(255,215,0,0.12); }

/* ┌─────────────────────────────────────────────┐
   │  PAYMENT METHODS                            │
   └─────────────────────────────────────────────┘ */
.payments-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.payment-badge {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 28px;
  font-weight: 700; font-size: .9rem; color: var(--text);
  transition: all .2s; text-align: center;
}
.payment-badge:hover { border-color: rgba(255,215,0,0.4); color: var(--gold); }

/* ┌─────────────────────────────────────────────┐
   │  CTA BANNER                                 │
   └─────────────────────────────────────────────┘ */
.cta-banner {
  background: linear-gradient(135deg, #0d1e3a 0%, #142040 40%, #1a0a00 80%, #2d1500 100%);
  border-radius: var(--radius-lg); padding: 60px 50px;
  border: 1px solid rgba(27,58,107,0.4); text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(27,58,107,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(255,107,0,0.12) 0%, transparent 60%);
}
.cta-banner h2 { font-family: var(--font-heading); font-size: 2.4rem; color: #fff; margin-bottom: 16px; position: relative; }
.cta-banner h2 em { color: var(--gold); font-style: normal; }
.cta-banner p { color: var(--text-muted); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner .btn-primary { font-size: 1.1rem; padding: 18px 48px; position: relative; }

/* ┌─────────────────────────────────────────────┐
   │  FOOTER                                     │
   └─────────────────────────────────────────────┘ */
footer {
  background: linear-gradient(180deg, #060d1e 0%, #030810 100%);
  border-top: 1px solid rgba(27,58,107,0.4);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: 18px; }
.footer-col a { display: block; color: var(--text-muted); font-size: .88rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p, .footer-bottom span { color: var(--text-muted); font-size: .82rem; }
.footer-disclaimer {
  background: rgba(255,255,255,0.03); border-radius: 8px;
  padding: 16px 20px; margin-top: 24px;
  font-size: .8rem; color: var(--text-muted); line-height: 1.6;
}
.footer-disclaimer a { color: var(--text-muted); text-decoration: underline; }

/* Age badge */
.age-badge {
  background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange); font-weight: 700; font-size: .85rem;
  padding: 4px 12px; border-radius: 6px; display: inline-block;
  margin-bottom: 12px;
}

/* ┌─────────────────────────────────────────────┐
   │  BREADCRUMBS                                │
   └─────────────────────────────────────────────┘ */
.breadcrumbs {
  padding: 16px 0; display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; font-size: .85rem;
}
.breadcrumbs a { color: var(--text-muted); transition: color .2s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--text-muted); }
.breadcrumbs strong { color: var(--gold); }

/* ┌─────────────────────────────────────────────┐
   │  PAGE HERO (inner pages)                    │
   └─────────────────────────────────────────────┘ */
.page-hero {
  padding: 60px 0 50px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #060d1a 0%, #0d1e3a 60%, #142048 100%);
}
.page-hero::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background: radial-gradient(ellipse at 100% 50%, rgba(27,58,107,0.25) 0%, transparent 70%);
}
.page-hero h1 {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: #fff; margin-bottom: 16px; position: relative; z-index: 1;
}
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { color: var(--text-muted); max-width: 580px; font-size: 1.05rem; position: relative; z-index: 1; }

/* ┌─────────────────────────────────────────────┐
   │  HIGHLIGHT BOX                              │
   └─────────────────────────────────────────────┘ */
.highlight-box {
  background: rgba(255,215,0,0.06); border: 1px solid rgba(255,215,0,0.2);
  border-left: 4px solid var(--gold); border-radius: var(--radius);
  padding: 20px 24px;
}
.highlight-box p { color: var(--text); margin: 0; }

/* ── Bonus card ── */
.bonus-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.bonus-card {
  background: linear-gradient(135deg, #0d1e3a 0%, #1a1200 50%, #2d1e00 100%);
  border: 1px solid rgba(27,58,107,0.4); border-radius: var(--radius-lg);
  padding: 32px; position: relative; overflow: hidden; transition: all .25s;
}
.bonus-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(255,215,0,0.15); }
.bonus-amount { font-family: var(--font-heading); font-size: 2.5rem; color: var(--gold); font-weight: 700; }
.bonus-type { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; }
.bonus-card h3 { font-size: 1.1rem; color: #fff; font-weight: 700; margin-bottom: 10px; }
.bonus-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 20px; }

/* Tabs */
.tabs { display: flex; gap: 4px; margin-bottom: 28px; background: var(--bg-card); border-radius: 10px; padding: 4px; }
.tab-btn {
  flex: 1; padding: 10px 16px; border: none; border-radius: 8px;
  background: none; color: var(--text-muted); font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: all .2s; font-family: var(--font);
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,107,0,0.15)); color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .banner-overlay { padding: 0 40px; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .burger { display: flex; }
  section { padding: 55px 0; }
  .hero { min-height: 100svh; padding: 30px 0; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 24px; }
  .banner-section img { height: 280px; }
  .banner-overlay { flex-direction: column; justify-content: flex-end; padding: 20px 24px 28px; background: linear-gradient(to top, rgba(10,14,26,0.95) 50%, transparent); }
  .banner-text h2 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner h2 { font-size: 1.8rem; }
  .page-hero { padding: 40px 0 36px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .bar-label { min-width: 100px; font-size: .8rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tabs { flex-direction: column; }
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeInUp .5s ease forwards; }

/* ── Utility ── */
.text-gold { color: var(--gold); }
.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mt-8 { margin-top: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }

/* ── Section tag inside page-hero ── */
.page-hero .section-tag { display: inline-block; margin-bottom: 12px; position: relative; z-index: 1; }

/* ── donut ring inner white circle ── */
.donut-ring::after {
  content: ''; position: absolute;
  width: 80px; height: 80px;
  background: var(--bg-card); border-radius: 50%;
}

/* ── Author Box ── */
.author-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--bg-card, #1a1a2e);
    border: 1px solid var(--border, rgba(255,255,255,0.1));
    border-radius: 16px;
    padding: 28px 32px;
    margin: 48px 0;
}
.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: none;
    flex-shrink: 0;
    border: 3px solid rgba(249,115,22,0.3);
    overflow: hidden;
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.author-info { flex: 1; }
.author-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange, #f97316);
    margin-bottom: 4px;
}
.author-name {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
}
.author-role {
    font-size: .82rem;
    color: #f97316;
    font-weight: 600;
    margin-bottom: 10px;
}
.author-bio {
    font-size: .88rem;
    color: var(--text-muted, #aaa);
    line-height: 1.65;
    margin-bottom: 14px;
}
.author-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.author-stat { font-size: .78rem; color: var(--text-muted, #aaa); }
.author-stat strong { color: var(--orange, #f97316); font-weight: 700; }
@media (max-width: 600px) {
    .author-box { flex-direction: column; align-items: center; text-align: center; padding: 24px; }
    .author-meta { justify-content: center; }
}
