/* ================================================
   Onewin - Nigeria's #1 1win Affiliate Site
   Domain: Onewin.com.ng | Onewin.ng
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg-primary: #080C12;
  --bg-secondary: #0F1822;
  --bg-card: #131E2C;
  --bg-card-hover: #1A2840;
  --gold: #F5C518;
  --gold-dark: #D4A017;
  --green: #00B156;
  --green-dark: #008C42;
  --red: #FF3B30;
  --blue-accent: #1E88E5;
  --text-primary: #F0F4F8;
  --text-secondary: #8BA3BE;
  --text-muted: #4A6480;
  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(245,197,24,0.3);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 40px rgba(245,197,24,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; font-weight: 700; }

p { margin-bottom: 1rem; color: var(--text-secondary); }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; color: var(--text-secondary); }

/* ========== LAYOUT ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--bg-secondary); }

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

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
}

/* ========== HEADER / NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,12,18,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: #000;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: #fff !important; transform: translateY(-1px); }

.nav-badge {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 12px 16px; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,197,24,0.35);
}

.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: #00D167;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,177,86,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.btn-lg { padding: 18px 44px; font-size: 1.2rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-full { width: 100%; }

/* ========== CARDS ========== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.25s ease;
}
.card:hover {
  border-color: rgba(245,197,24,0.2);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card-gold {
  border-color: var(--border-gold);
  background: linear-gradient(135deg, #131E2C 0%, #1A2510 100%);
}

/* ========== BADGES ========== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-gold { background: rgba(245,197,24,0.15); color: var(--gold); border: 1px solid rgba(245,197,24,0.3); }
.badge-green { background: rgba(0,177,86,0.15); color: var(--green); border: 1px solid rgba(0,177,86,0.3); }
.badge-red { background: rgba(255,59,48,0.15); color: var(--red); border: 1px solid rgba(255,59,48,0.3); }
.badge-blue { background: rgba(30,136,229,0.15); color: #4DBBFF; border: 1px solid rgba(30,136,229,0.3); }

/* ========== SECTION LABELS ========== */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
}
.section-label span {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========== STAR RATING ========== */
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }
.rating-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; color: var(--text-primary); }
.rating-small { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--text-primary); }

/* ========== TABLES ========== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; }
th {
  background: rgba(245,197,24,0.1);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-gold);
  white-space: nowrap;
}
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-secondary);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.025); }
.td-win { color: var(--green); font-weight: 600; }
.td-lose { color: var(--text-muted); }

/* ========== ODDS CHIP ========== */
.odds {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 1rem;
  border: 1px solid rgba(245,197,24,0.25);
}

/* ========== PREDICTION CARD ========== */
.pred-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
}
.pred-card:hover {
  border-color: rgba(245,197,24,0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.pred-header {
  background: rgba(255,255,255,0.04);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.pred-league {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pred-time { font-size: 0.8rem; color: var(--text-muted); }
.pred-teams {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pred-team {
  flex: 1;
  text-align: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.pred-vs {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.pred-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.pred-tip {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.pred-confidence {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}
.conf-bar {
  width: 60px;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.conf-fill { height: 100%; background: var(--green); border-radius: 3px; }

/* ========== PROGRESS / METER ========== */
.meter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.meter-label { font-size: 0.85rem; color: var(--text-secondary); flex: 1; }
.meter-bar { flex: 2; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.meter-fill { height: 100%; border-radius: 3px; background: var(--gold); }
.meter-val { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); min-width: 30px; text-align: right; }

/* ========== HERO ========== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
  background: var(--bg-primary);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,177,86,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

/* ========== PROMO BANNER ========== */
.promo-bar {
  background: var(--gold);
  padding: 10px 0;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.03em;
}
.promo-bar a { color: #000; text-decoration: underline; }

/* ========== STAT BOXES ========== */
.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ========== CHECK LIST ========== */
.checklist { list-style: none; padding: 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(0,177,86,0.15);
  color: var(--green);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}

.xlist { list-style: none; padding: 0; }
.xlist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.xlist li:last-child { border-bottom: none; }
.xlist li::before {
  content: '✗';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(255,59,48,0.12);
  color: var(--red);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}

/* ========== FAQ ========== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  background: var(--bg-card);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: background 0.2s;
  user-select: none;
  gap: 12px;
}
.faq-q:hover { background: var(--bg-card-hover); }
.faq-icon {
  min-width: 22px;
  height: 22px;
  background: rgba(245,197,24,0.1);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform 0.25s;
}
.faq-icon.open { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}
.faq-a.open { display: block; }
.faq-a p { margin: 0; color: var(--text-secondary); }

/* ========== STEPS ========== */
.step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.step-num {
  min-width: 44px;
  height: 44px;
  background: rgba(245,197,24,0.12);
  color: var(--gold);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h4 { color: var(--text-primary); margin-bottom: 6px; }
.step-content p { margin: 0; font-size: 0.93rem; }

/* ========== LIVE BADGE ========== */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  margin-right: 4px;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-muted); opacity: 0.5; }

/* ========== AFFILIATE DISCLAIMER ========== */
.disclaimer {
  background: rgba(30,136,229,0.06);
  border: 1px solid rgba(30,136,229,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 24px 0;
  line-height: 1.6;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { font-size: 0.88rem; margin-top: 12px; line-height: 1.7; }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-secondary); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; margin: 0; color: var(--text-muted); }
.footer-warning {
  background: rgba(255,59,48,0.07);
  border: 1px solid rgba(255,59,48,0.15);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.65;
}

/* ========== HIGHLIGHT BOX ========== */
.highlight-box {
  background: linear-gradient(135deg, rgba(245,197,24,0.08) 0%, rgba(0,177,86,0.06) 100%);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius);
  padding: 2rem;
}

/* ========== BACK TO TOP ========== */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(245,197,24,0.4);
  border: none;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: #fff; transform: translateY(-2px); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.5s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }

/* ========== REVIEW SCORE ========== */
.review-score-box {
  background: linear-gradient(135deg, #0F1822 0%, #131E2C 100%);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.score-big {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.score-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ========== APK DOWNLOAD BOX ========== */
.apk-box {
  background: linear-gradient(135deg, #0a1420 0%, #102010 100%);
  border: 2px solid rgba(0,177,86,0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.apk-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,177,86,0.12) 0%, transparent 70%);
}

/* ========== PAGE HERO (subpages) ========== */
.page-hero {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); }

/* ========== UTILITY ========== */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.fw-700 { font-weight: 700; }
.fw-500 { font-weight: 500; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: #2A3A4A; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ========== MOBILE EXTRAS ========== */
@media (max-width: 600px) {
  .btn-lg { padding: 14px 28px; font-size: 1rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .score-big { font-size: 4rem; }
  .hero { padding: 50px 0 40px; }
}
