/* SEO Crawlable Pages V1 — dedicated stylesheet for the static content
   pages (/how-it-works, /value-betting, /privacy, /terms, /bg/privacy,
   /bg/terms). Deliberately separate from odds-board.jsx's inline <style>
   block (scoped to .ob-root and the full stateful app) rather than reusing
   it — these pages are plain static HTML with no React tree to scope it to.
   Color tokens are copied from odds-board.jsx's palette to stay visually
   consistent with the rest of the site; nothing here changes that file. */

:root {
  --bg: #0B0C0F;
  --panel: #17181C;
  --border: #2B2D33;
  --text: #F4F5F7;
  --muted: #90949C;
  --primary: #1FCE7A;
  --primary-hover: #33E28D;
  --header-bg: rgba(11, 12, 15, 0.92);
  color-scheme: dark;
}
[data-theme="light"] {
  --bg: #F4F5F7;
  --panel: #FFFFFF;
  --border: #DFE1E6;
  --text: #1A1D23;
  --muted: #6B7280;
  --primary: #16A34A;
  --primary-hover: #15803D;
  --header-bg: rgba(255, 255, 255, 0.92);
  color-scheme: light;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
  line-height: 1.6;
}

.sp-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
}
.sp-header-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sp-brand {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.sp-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.sp-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.sp-nav a:hover { color: var(--text); }

.sp-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.sp-main h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.sp-intro {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 32px;
}
.sp-main section { margin: 0 0 28px; }
.sp-main h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}
.sp-main p {
  font-size: 15.5px;
  color: var(--text);
  margin: 0 0 12px;
}
.sp-main a { color: var(--primary); }
.sp-main a:hover { color: var(--primary-hover); }

.sp-cta {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
}
.sp-cta p { margin: 0 0 12px; }
.sp-cta-links { display: flex; gap: 14px; flex-wrap: wrap; }
.sp-cta-links a {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
}
.sp-cta-primary { background: var(--primary); color: #04140C; }
.sp-cta-secondary { border: 1px solid var(--border); color: var(--text); }

.sp-legal-effective {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 24px;
}
.sp-lang-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 24px;
}
.sp-lang-note a { color: var(--primary); }

.sp-footer {
  border-top: 1px solid var(--border);
  padding: 24px 20px 40px;
}
.sp-footer-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.sp-footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.sp-footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}
.sp-footer-links a:hover { color: var(--text); }
.sp-footer-responsible {
  max-width: 760px;
  margin: 12px auto 0;
  padding: 0 20px;
  font-size: 11.5px;
  color: var(--muted);
}

@media (max-width: 600px) {
  .sp-main h1 { font-size: 26px; }
  .sp-main h2 { font-size: 18px; }
}
