/* ═══════════════════════════════════════════════════════
   MOSTBET KGZ — Premium Design System v2
   Brand: #FFD700 (gold), #0E1B2E (dark navy), #FF6600 (orange)
═══════════════════════════════════════════════════════ */

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

:root {
  --gold: #FFD700;
  --gold-dark: #D4A800;
  --gold-dim: rgba(255,215,0,0.85);
  --orange: #FF6600;
  --orange-l: #FF8533;
  --navy: #080F1A;
  --navy-mid: #0D1829;
  --navy-card: #111E30;
  --navy-line: rgba(255,255,255,0.07);
  --navy-border: rgba(255,215,0,0.14);
  --white: #FFFFFF;
  --t1: #EEF2FF;
  --t2: #96AAC5;
  --t3: #566880;
  --success: #00D48C;
  --danger: #FF3B3B;
  --font-h: 'Barlow Condensed', sans-serif;
  --font-b: 'Inter', sans-serif;
  --r: 10px;
  --r-sm: 6px;
  --shadow: 0 20px 60px rgba(0,0,0,0.6);
  --shadow-gold: 0 8px 30px rgba(255,215,0,0.2);
  --tr: all 0.22s ease;
}

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

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

body {
  font-family: var(--font-b);
  background: var(--navy);
  color: var(--t1);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--tr); }
a:hover { color: #fff; }

/* ─── TYPOGRAPHY ──────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-h); letter-spacing: 0.3px; color: var(--white); }

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
p { color: var(--t2); font-size: 0.95rem; margin-bottom: 0.9rem; }
strong { color: var(--white); }
.gold { color: var(--gold); }
.orange { color: var(--orange); }

/* ─── LAYOUT ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-dark { background: var(--navy-mid); }

/* ─── SKIP LINK ───────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 20px;
  background: var(--gold); color: var(--navy);
  padding: 8px 18px; border-radius: var(--r-sm);
  font-weight: 700; z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 10px; color: var(--navy); }

/* ─── HEADER ──────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(8,15,26,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--navy-border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px; max-width: 1200px; margin: 0 auto;
}

/* LOGO */
.logo {
  display: flex; align-items: center; flex-shrink: 0;
  color: var(--white); font-family: var(--font-h);
}
.logo img {
  height: 38px; width: auto; display: block;
  filter: drop-shadow(0 0 12px rgba(255,102,0,0.4));
  transition: filter 0.3s;
}
.logo:hover img { filter: drop-shadow(0 0 20px rgba(255,102,0,0.7)); }

/* NAV */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: var(--t2); font-size: 0.82rem; font-weight: 600;
  padding: 7px 13px; border-radius: var(--r-sm);
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: var(--tr);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active {
  background: rgba(255,215,0,0.08);
  border-radius: var(--r-sm);
}

/* HEADER CTA */
.header-cta { display: flex; align-items: center; gap: 8px; }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 24px; border-radius: var(--r-sm);
  font-family: var(--font-b); font-size: 0.85rem; font-weight: 700;
  cursor: pointer; border: none; transition: var(--tr);
  white-space: nowrap; text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 16px rgba(255,215,0,0.25);
}
.btn-gold:hover {
  background: #ffe033; color: var(--navy);
  transform: translateY(-2px); box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1.5px solid rgba(255,215,0,0.5);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(255,215,0,0.06); color: var(--gold); }
.btn-lg { padding: 15px 36px; font-size: 1rem; border-radius: var(--r); }
.btn-sm { padding: 7px 16px; font-size: 0.78rem; }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-l); transform: translateY(-2px); color: var(--white); }

/* ─── BURGER ──────────────────────────────────────── */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--tr);
}

/* ─── MOBILE NAV ──────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--navy-mid); z-index: 400;
  padding: 20px; overflow-y: auto;
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 3px; }
.mobile-nav a {
  color: var(--t2); padding: 14px 16px;
  border-radius: var(--r-sm); font-size: 0.95rem; font-weight: 600;
  border-bottom: 1px solid var(--navy-line);
  text-transform: uppercase; letter-spacing: 0.4px;
}
.mobile-nav a:hover { color: var(--gold); background: rgba(255,215,0,0.05); }
.mobile-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.mobile-cta .btn { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-mid);
  padding: 100px 0 80px;
  min-height: 540px;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(255,102,0,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(255,215,0,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-img {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 48%; object-fit: cover; opacity: 0.25;
}
.hero-content { position: relative; z-index: 2; max-width: 580px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,102,0,0.15);
  border: 1px solid rgba(255,102,0,0.35);
  color: var(--orange); font-size: 0.75rem; font-weight: 700;
  padding: 5px 14px; border-radius: 99px;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p { font-size: 1rem; margin-bottom: 32px; color: var(--t2); max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── STATS BAR ───────────────────────────────────── */
.stats-bar {
  background: var(--navy-card);
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-border);
  padding: 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 22px 16px;
  border-right: 1px solid var(--navy-line);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-h); font-size: 2rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.stat-label { font-size: 0.72rem; color: var(--t3); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ─── SECTION HEADER ──────────────────────────────── */
.section-header { margin-bottom: 40px; }
.section-header .eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  color: var(--orange); text-transform: uppercase;
  letter-spacing: 2.5px; margin-bottom: 10px;
}

/* ─── CARDS ───────────────────────────────────────── */
.card {
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: var(--r); padding: 24px;
  transition: var(--tr);
}
.card:hover {
  border-color: rgba(255,215,0,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.card-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: rgba(255,215,0,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 14px;
}

/* ─── GRIDS ───────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

/* ─── RATING BADGE ────────────────────────────────── */
.rating-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.25);
  padding: 5px 14px; border-radius: 99px;
  font-family: var(--font-h); font-weight: 700;
  font-size: 0.95rem; color: var(--gold);
}
.stars { color: var(--gold); letter-spacing: 2px; }

/* ─── SCORE BARS ──────────────────────────────────── */
.score-item { margin-bottom: 16px; }
.score-head { display: flex; justify-content: space-between; font-size: 0.82rem; margin-bottom: 7px; }
.score-label { color: var(--t2); }
.score-val { font-weight: 700; color: var(--gold); }
.score-track { height: 6px; background: rgba(255,255,255,0.07); border-radius: 99px; overflow: hidden; }
.score-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}

/* ─── TABLES ──────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--navy-line); }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
caption { font-size: 0.75rem; color: var(--t3); padding: 10px 16px; text-align: left; }
thead th {
  background: rgba(255,215,0,0.06);
  color: var(--gold); font-family: var(--font-h); font-weight: 700;
  padding: 13px 16px; text-align: left;
  text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap; font-size: 0.8rem;
  border-bottom: 1px solid var(--navy-border);
}
tbody tr { border-bottom: 1px solid var(--navy-line); transition: background 0.15s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(255,215,0,0.03); }
tbody td { padding: 12px 16px; color: var(--t2); }
tbody td strong { color: var(--white); }
.check { color: var(--success); }
.cross { color: var(--danger); }
.odds-val { font-weight: 700; color: var(--gold); font-family: var(--font-h); font-size: 1rem; }

/* ─── BAR CHART ───────────────────────────────────── */
.chart-block {
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: var(--r); padding: 24px 28px;
}
.chart-title {
  font-family: var(--font-h); font-size: 1.05rem; font-weight: 700;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 22px;
}
.bar-chart { display: flex; flex-direction: column; gap: 13px; }
.bar-row { display: flex; align-items: center; gap: 14px; }
.bar-label { width: 130px; font-size: 0.78rem; color: var(--t2); text-align: right; flex-shrink: 0; }
.bar-track { flex: 1; height: 26px; background: rgba(255,255,255,0.05); border-radius: 5px; overflow: hidden; }
.bar-fill {
  height: 100%; border-radius: 5px;
  background: linear-gradient(90deg, #C43B00, var(--orange), var(--gold));
  display: flex; align-items: center; padding-left: 10px;
  font-size: 0.75rem; font-weight: 700; color: var(--navy);
  transition: width 1.3s ease;
}
.bar-fill.blue { background: linear-gradient(90deg, #0D47A1, #42A5F5); color: #fff; }
.bar-fill.green { background: linear-gradient(90deg, #004D2C, var(--success)); color: #fff; }

/* ─── FAQ ─────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 780px; }
.faq-item {
  border: 1px solid var(--navy-line);
  border-radius: var(--r-sm); overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(255,215,0,0.2); }
.faq-q {
  width: 100%; background: var(--navy-card); color: var(--white);
  font-family: var(--font-b); font-size: 0.9rem; font-weight: 600;
  padding: 16px 20px; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left; transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,215,0,0.04); }
.faq-q .faq-icon { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 14px 20px; color: var(--t2); font-size: 0.875rem; margin: 0; }

/* ─── SEO ARTICLE ─────────────────────────────────── */
.seo-article { max-width: 800px; }
.seo-article h2 { margin-top: 36px; margin-bottom: 14px; font-size: 1.4rem; }
.seo-article h2:first-child { margin-top: 0; }
.seo-article p { font-size: 0.95rem; line-height: 1.8; color: var(--t2); }
.seo-article a { color: var(--gold); border-bottom: 1px solid rgba(255,215,0,0.25); }
.seo-article a:hover { border-color: var(--gold); }
.seo-article ul { margin: 12px 0 18px 22px; }
.seo-article ul li { color: var(--t2); font-size: 0.95rem; margin-bottom: 7px; }

/* ─── BREADCRUMBS ─────────────────────────────────── */
.breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; }
.breadcrumbs a { color: var(--t2); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: var(--t3); }
.breadcrumbs .current { color: var(--t1); }

/* ─── CTA SECTION ─────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-card) 0%, rgba(255,102,0,0.08) 100%);
  border: 1px solid var(--navy-border);
  border-radius: 16px; padding: 56px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo img { height: 32px; }
.footer-brand p { font-size: 0.82rem; color: var(--t3); line-height: 1.6; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-h); font-size: 0.8rem; font-weight: 700;
  color: var(--white); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-col a {
  display: block; color: var(--t3); font-size: 0.82rem;
  padding: 4px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.disclaimer {
  margin-top: 14px; font-size: 0.75rem; color: var(--t3);
  border-top: 1px solid var(--navy-line); padding-top: 12px;
}
.footer-bottom {
  border-top: 1px solid var(--navy-line);
  padding-top: 20px; text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--t3); margin: 0; }

/* ─── FADE IN ANIMATION ───────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ─── BADGE ───────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 99px;
  font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px;
}
.badge-green { background: rgba(0,212,140,0.12); color: var(--success); border: 1px solid rgba(0,212,140,0.25); }
.badge-orange { background: rgba(255,102,0,0.12); color: var(--orange); border: 1px solid rgba(255,102,0,0.25); }
.badge-gold { background: rgba(255,215,0,0.12); color: var(--gold); border: 1px solid rgba(255,215,0,0.25); }

/* ─── APP COMPONENTS ──────────────────────────────── */
.app-split { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.app-split > div:first-child { flex: 1; min-width: 280px; }
.app-phone { border-radius: 16px; box-shadow: 0 32px 80px rgba(0,0,0,0.6); max-height: 360px; width: auto; object-fit: contain; }
.app-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: var(--r); padding: 12px 20px; color: var(--white);
  transition: var(--tr);
}
.app-badge:hover { border-color: var(--gold); transform: translateY(-2px); color: var(--white); }
.app-badge .icon { font-size: 1.8rem; }

/* ─── TIMELINE ────────────────────────────────────── */
.tl-item { display: grid; grid-template-columns: 14px 70px 1fr; gap: 14px; align-items: start; padding-bottom: 22px; position: relative; }
.tl-item:not(:last-child)::after { content: ''; position: absolute; left: 6px; top: 18px; bottom: 0; width: 2px; background: var(--navy-line); }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); margin-top: 2px; }
.tl-year { font-family: var(--font-h); font-size: 0.75rem; color: var(--gold); font-weight: 700; margin-top: 2px; }
.tl-text { font-size: 0.85rem; color: var(--t2); line-height: 1.5; }

/* ─── SPORT ICON ──────────────────────────────────── */
.sport-icon { margin-right: 5px; }
.check-cell { text-align: center; }
.highlight-col { background: rgba(255,215,0,0.04); }
.prose h2 { margin-top: 28px; margin-bottom: 10px; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 10px 0 16px 20px; }
.prose ul li { color: var(--t2); margin-bottom: 6px; font-size: 0.95rem; }

/* ─── MOBILE HEADER ACCOUNT BUTTON ────────────────── */
#mobile-account-btn {
  display: none !important; /* hidden on desktop by default */
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  #mobile-account-btn {
    display: inline-flex !important;
    margin-left: auto;
    margin-right: 10px;
    font-size: 0.78rem;
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { padding: 70px 0 56px; min-height: auto; }
  .hero-img { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 36px 20px; }
  .app-split { flex-direction: column; }
  .bar-label { width: 90px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}
