/* Olympus Bets SEO Pages — Shared Styles */
:root {
  --bg: #08090d;
  --bg-card: rgba(255,255,255,0.025);
  --bg-card-hover: rgba(255,255,255,0.045);
  --border: rgba(255,255,255,0.06);
  --text: #f0f2f5;
  --text-muted: rgba(240,242,245,0.55);
  --text-dim: rgba(240,242,245,0.35);
  --gold: #d4af37;
  --gold-dim: rgba(212,175,55,0.15);
  --blue: #3b82f6;
  --green: #22c55e;
  --red: #ef4444;
  --font: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, 'Cascadia Code', 'Fira Code', Menlo, monospace;
  --max-w: 860px;
  --max-w-wide: 1100px;
}

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

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

/* ── Navigation ──────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,9,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--text);
  font-weight: 700; font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.nav-brand .icon { font-size: 1.4rem; }
.nav-links { display: flex; gap: 0.25rem; align-items: center; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  padding: 0.4rem 0.75rem; border-radius: 6px;
  font-size: 0.88rem; font-weight: 500;
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-card); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  font-weight: 600 !important;
  padding: 0.45rem 1rem !important;
}
.nav-cta:hover { opacity: 0.9; }
.nav-mobile { display: none; }
.nav-mobile-btn {
  display: none; background: none; border: none;
  color: var(--text); font-size: 1.5rem; cursor: pointer;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(212,175,55,0.06) 0%, transparent 70%);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--text) 0%, rgba(240,242,245,0.7) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero .accent { -webkit-text-fill-color: var(--gold); }
.hero p {
  font-size: 1.15rem; color: var(--text-muted);
  max-width: 600px; margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: #000 !important;
  padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none !important; transition: all 0.2s;
  border: none; cursor: pointer;
}
.hero-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(212,175,55,0.25); color: #000 !important; }
.hero-secondary {
  background: transparent; color: var(--text-muted) !important;
  border: 1px solid var(--border);
  margin-left: 0.75rem;
}
.hero-secondary:hover { color: var(--text) !important; border-color: rgba(255,255,255,0.15); }

/* ── Content ──────────────────────────────────────── */
.content { max-width: var(--max-w); margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.content-wide { max-width: var(--max-w-wide); }

.content h1 {
  font-size: 2.2rem; font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 0.5rem;
}
.content h2 {
  font-size: 1.55rem; font-weight: 700;
  letter-spacing: -0.02em; margin: 3rem 0 1rem;
  color: var(--text);
}
.content h3 {
  font-size: 1.15rem; font-weight: 600;
  margin: 2rem 0 0.75rem; color: var(--text);
}
.content p { margin-bottom: 1rem; color: rgba(240,242,245,0.8); }
.content ul, .content ol { margin: 0 0 1.5rem 1.5rem; color: rgba(240,242,245,0.8); }
.content li { margin-bottom: 0.5rem; }
.content strong { color: var(--text); font-weight: 600; }
.content a { color: var(--gold); text-decoration: none; }
.content a:hover { text-decoration: underline; }
.content hr {
  border: none; height: 1px;
  background: var(--border); margin: 3rem 0;
}
.subtitle {
  color: var(--text-muted); font-size: 1.05rem;
  margin-bottom: 2rem; line-height: 1.7;
}
.gold-bar {
  height: 3px; width: 80px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1rem 0 2rem;
}

/* ── Cards ─────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: background 0.15s;
}
.card:hover { background: var(--bg-card-hover); }
.card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.card p { margin: 0; font-size: 0.95rem; color: var(--text-muted); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem; margin: 2rem 0;
}

/* ── Stats row ─────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem; margin: 2rem 0;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}
.stat-value {
  font-size: 1.8rem; font-weight: 800;
  color: var(--gold); letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.8rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ── Tables ─────────────────────────────────────────── */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9rem;
}
th {
  text-align: left; padding: 0.75rem 1rem;
  background: rgba(212,175,55,0.08);
  color: var(--gold); font-weight: 600;
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}
td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: rgba(240,242,245,0.75);
}
tr:hover td { background: rgba(255,255,255,0.02); }

/* ── FAQ ────────────────────────────────────────────── */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
}
.faq-item h3 {
  font-size: 1.05rem; margin: 0 0 0.6rem;
  color: var(--text);
}
.faq-item p {
  margin: 0; font-size: 0.93rem;
  color: rgba(240,242,245,0.7); line-height: 1.7;
}

/* ── Pricing ───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin: 2rem 0;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212,175,55,0.08);
}
.pricing-card .badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold); color: #000;
  padding: 0.25rem 1rem; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.pricing-card .price {
  font-size: 2.5rem; font-weight: 800;
  color: var(--gold); margin: 1rem 0 0.25rem;
}
.pricing-card .price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-card ul {
  list-style: none; margin: 1.5rem 0; padding: 0;
}
.pricing-card li {
  padding: 0.4rem 0; color: rgba(240,242,245,0.75);
  font-size: 0.92rem;
}
.pricing-card li::before { content: "\2713\00a0\00a0"; color: var(--green); font-weight: 700; }
.pricing-btn {
  display: block; width: 100%; padding: 0.85rem;
  background: var(--gold); color: #000;
  border: none; border-radius: 8px;
  font-weight: 700; font-size: 1rem;
  text-align: center; text-decoration: none;
  cursor: pointer; transition: opacity 0.15s;
}
.pricing-btn:hover { opacity: 0.9; }
.pricing-btn.outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}

/* ── Calculator ────────────────────────────────────── */
.calc-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem; margin: 2rem 0;
}
.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1rem;
}
.calc-field label {
  display: block; font-size: 0.85rem;
  color: var(--text-muted); margin-bottom: 0.4rem;
  font-weight: 500;
}
.calc-field input, .calc-field select {
  width: 100%; padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text); font-size: 1rem;
  font-family: var(--font);
  outline: none; transition: border-color 0.15s;
}
.calc-field input:focus, .calc-field select:focus {
  border-color: var(--gold);
}
.calc-result {
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  padding: 1.5rem; margin-top: 1.5rem;
  text-align: center;
}
.calc-result .big {
  font-size: 2rem; font-weight: 800;
  color: var(--gold);
}

/* ── Comparison ────────────────────────────────────── */
.compare-table th:first-child { min-width: 180px; }
.compare-yes { color: var(--green); font-weight: 600; }
.compare-no { color: var(--red); font-weight: 600; }
.compare-partial { color: var(--gold); }

/* ── Footer ────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
  text-align: center;
}
.footer-inner { max-width: var(--max-w-wide); margin: 0 auto; }
.footer-links {
  display: flex; gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap; margin-bottom: 1.5rem;
}
.footer-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.88rem;
}
.footer-links a:hover { color: var(--text); }
.footer p { color: var(--text-dim); font-size: 0.8rem; }
.footer-social {
  display: flex; gap: 1.5rem;
  justify-content: center; margin-bottom: 1rem;
}
.footer-social a {
  color: var(--gold); text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
}
.footer-social a:hover { text-decoration: underline; }

/* ── Breadcrumb ────────────────────────────────────── */
.breadcrumb {
  max-width: var(--max-w); margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-dim); margin: 0 0.4rem; }

/* ── CTA Banner ────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(59,130,246,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 14px;
  padding: 2.5rem;
  text-align: center; margin: 3rem 0;
}
.cta-banner h2 { margin: 0 0 0.75rem; }
.cta-banner p { margin: 0 0 1.5rem; color: var(--text-muted); }

/* ── Sport badge ───────────────────────────────────── */
.sport-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; font-size: 0.8rem;
  color: var(--text-muted); font-weight: 500;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .nav-mobile.open { display: flex; }
  .nav-mobile {
    flex-direction: column; gap: 0.25rem;
    position: absolute; top: 60px; left: 0; right: 0;
    background: rgba(8,9,13,0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
  }
  .nav-mobile a {
    color: var(--text-muted); text-decoration: none;
    padding: 0.6rem 0; font-size: 0.95rem;
  }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero h1 { font-size: 2rem; }
  .calc-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero-secondary { margin-left: 0; margin-top: 0.75rem; display: inline-flex; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
}

/* Quick-answer block for GEO — self-contained paragraph AI engines can extract */
.quick-answer {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
  border-left: 3px solid #d4af37;
  padding: 1.25rem 1.5rem;
  margin: 0 0 2rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e0e0e0;
}
