/* Speltips.se — Swedish blue/yellow design system */
:root {
  --blue: #005293;
  --blue-dark: #003d6e;
  --blue-deep: #001a2e;
  --blue-night: #00264a;
  --yellow: #FECC00;
  --yellow-soft: #FFE176;
  --yellow-deep: #E0B400;
  --bg: #0a1929;
  --bg-2: #0e2236;
  --surface: #122a42;
  --surface-2: #1a3552;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);
  --text: #f3f6fa;
  --text-muted: #9fb3c8;
  --text-dim: #6b829c;
  --success: #10b981;
  --danger: #ef4444;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow: 0 8px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.55);
  --container: 1200px;
  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--yellow); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow-soft); }
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 0.6em; }
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.6rem); }
h2 { font-size: clamp(1.5rem, 2vw + 1rem, 2.2rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--text); }
small { color: var(--text-muted); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Disclosure bar */
.disclosure {
  background: var(--blue-deep);
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
}
.disclosure a { color: var(--yellow); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,25,41,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brand-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.4rem; color: var(--text); letter-spacing: -0.02em; }
.brand-logo:hover { color: var(--text); }
.brand-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue) 50%, var(--yellow) 50%, var(--yellow) 100%);
  border-radius: 8px;
  display: inline-block;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}
.brand-mark::after {
  content: '';
  position: absolute; inset: 7px;
  background: var(--bg);
  border-radius: 4px;
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { color: var(--text-muted); padding: 8px 14px; border-radius: 8px; font-weight: 500; font-size: 14px; transition: all var(--transition); }
.nav a:hover { background: var(--surface); color: var(--text); }
.nav a.active { color: var(--yellow); }
.menu-toggle { display: none; background: none; border: 1px solid var(--border-strong); color: var(--text); padding: 8px 12px; border-radius: 8px; cursor: pointer; }

/* Hero */
.hero {
  position: relative;
  min-height: 600px;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: saturate(1.2) brightness(0.7);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, transparent 60%), linear-gradient(0deg, var(--bg) 0%, transparent 60%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; }
.hero h1 { color: var(--text); margin-bottom: 0.4em; max-width: 880px; }
.hero h1 .accent { color: var(--yellow); }
.hero .lede { font-size: 1.2rem; color: var(--text-muted); max-width: 720px; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}
.btn-primary { background: var(--yellow); color: var(--blue-deep); box-shadow: 0 6px 16px rgba(254,204,0,0.25); }
.btn-primary:hover { background: var(--yellow-soft); color: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(254,204,0,0.35); }
.btn-secondary { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
.btn-secondary:hover { background: var(--surface); color: var(--text); border-color: var(--yellow); }
.btn-ghost { background: var(--surface); color: var(--text); }
.btn-ghost:hover { background: var(--surface-2); color: var(--text); }

/* Sections */
section.block { padding: 80px 0; }
section.block-sm { padding: 56px 0; }
.section-title { display: flex; align-items: end; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.section-title h2 { margin: 0; }
.section-title .lede { color: var(--text-muted); margin: 6px 0 0; max-width: 620px; }
.section-eyebrow { color: var(--yellow); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }

/* Brand cards */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.brand-card:hover { transform: translateY(-3px); border-color: var(--yellow); box-shadow: var(--shadow-lg); }
.brand-card .image-wrap { aspect-ratio: 16/9; overflow: hidden; position: relative; background: var(--bg-2); }
.brand-card .image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.brand-card:hover .image-wrap img { transform: scale(1.04); }
.brand-card .rank-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--yellow);
  color: var(--blue-deep);
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.brand-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.brand-card h3 { margin: 0; color: var(--text); }
.brand-card .tagline { color: var(--text-muted); font-size: 14px; margin: 0; }
.brand-card .rating { display: flex; align-items: center; gap: 8px; }
.brand-card .rating .score { background: var(--yellow); color: var(--blue-deep); padding: 4px 10px; border-radius: 6px; font-weight: 800; font-size: 14px; }
.brand-card .rating .score-label { color: var(--text-muted); font-size: 13px; }
.brand-card .bonus-row { background: var(--bg-2); border-left: 3px solid var(--yellow); padding: 10px 14px; border-radius: 6px; font-size: 14px; }
.brand-card .bonus-row b { color: var(--yellow); display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; font-weight: 700; }
.brand-card .actions { display: flex; gap: 10px; margin-top: auto; padding-top: 8px; }
.brand-card .actions .btn { flex: 1; padding: 11px 14px; font-size: 14px; }

/* Comparison table */
.compare-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare-table th { background: var(--blue-deep); color: var(--text-muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--surface-2); }
.compare-table .brand-cell { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--text); }
.compare-table .score-pill { background: var(--yellow); color: var(--blue-deep); padding: 4px 10px; border-radius: 6px; font-weight: 800; font-size: 13px; }
.compare-table .promo-code { font-family: ui-monospace, 'SF Mono', monospace; background: var(--bg-2); border: 1px dashed var(--yellow); color: var(--yellow); padding: 4px 8px; border-radius: 4px; font-size: 12px; }

/* Tip cards */
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; }
.tip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: 14px;
}
.tip-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.tip-card .meta { display: flex; gap: 8px; flex-wrap: wrap; font-size: 12px; }
.tip-card .meta .badge { background: var(--blue-deep); color: var(--yellow); padding: 4px 10px; border-radius: 4px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.tip-card .meta .date { color: var(--text-muted); padding: 4px 0; }
.tip-card h3 { font-size: 1.2rem; margin: 0; color: var(--text); line-height: 1.35; }
.tip-card h3 a { color: var(--text); }
.tip-card h3 a:hover { color: var(--yellow); }
.tip-card .pick { background: var(--bg-2); border-radius: var(--radius-sm); padding: 12px 14px; }
.tip-card .pick-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.tip-card .pick-value { color: var(--yellow); font-weight: 800; font-size: 16px; }
.tip-card .pick-odds { color: var(--text); font-weight: 700; margin-left: 6px; }
.tip-card .author { font-size: 13px; color: var(--text-muted); margin-top: auto; }

/* Article body */
.article-hero { padding: 60px 0 28px; }
.article-hero .meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.article-hero .meta .cat { color: var(--yellow); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.article-hero h1 { color: var(--text); max-width: 880px; }
.article-hero .standfirst { font-size: 1.15rem; color: var(--text-muted); max-width: 760px; }
.article-byline {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: 24px 0;
  font-size: 14px;
}
.article-byline .author-init {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--yellow));
  color: var(--blue-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.article-byline .author-meta b { color: var(--text); display: block; }
.article-byline .author-meta span { color: var(--text-muted); font-size: 12px; }
.article-body { max-width: 780px; margin: 0 auto; }
.article-body h2 { color: var(--text); margin-top: 2.2em; padding-bottom: 12px; border-bottom: 2px solid var(--blue); }
.article-body h2 .accent-bar { color: var(--yellow); }
.article-body h3 { color: var(--text); margin-top: 1.6em; }
.article-body ul, .article-body ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.article-body ul li, .article-body ol li { margin-bottom: 0.6em; color: var(--text); }
.article-body strong { color: var(--text); }
.article-body blockquote {
  border-left: 4px solid var(--yellow);
  padding: 12px 22px;
  margin: 1.6em 0;
  background: var(--surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
}
.article-body .pick-box {
  background: var(--surface);
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  padding: 22px;
  margin: 28px 0;
}
.article-body .pick-box h3 { margin-top: 0; color: var(--yellow); }
.article-body .pick-box .pick-line { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--border); font-size: 15px; }
.article-body .pick-box .pick-line:last-child { border-bottom: none; }
.article-body .pick-box .pick-line b { color: var(--text); }
.article-body .pick-box .pick-line .odds { color: var(--yellow); font-weight: 800; }

/* Review pages */
.review-header {
  background: linear-gradient(135deg, var(--blue-deep), var(--bg));
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}
.review-header .container { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: center; }
.review-header h1 { margin-bottom: 8px; }
.review-header .review-image { aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; }
.review-header .review-image img { width: 100%; height: 100%; object-fit: cover; }
.quick-facts {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin: 28px 0;
}
.quick-facts h3 { margin-top: 0; color: var(--yellow); font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; }
.quick-facts dl { display: grid; grid-template-columns: 140px 1fr; gap: 10px 18px; margin: 0; font-size: 14px; }
.quick-facts dt { color: var(--text-muted); }
.quick-facts dd { margin: 0; color: var(--text); font-weight: 600; }

.score-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin: 28px 0; }
.score-tile { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; text-align: center; }
.score-tile .label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.score-tile .num { font-size: 1.8rem; font-weight: 800; color: var(--yellow); margin: 4px 0; }

.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 28px 0; }
.proscons > div { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.proscons h3 { margin-top: 0; }
.proscons .pros h3 { color: var(--success); }
.proscons .cons h3 { color: var(--danger); }
.proscons ul { list-style: none; padding: 0; margin: 0; }
.proscons ul li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: 14px; }
.proscons .pros ul li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.proscons .cons ul li::before { content: '−'; position: absolute; left: 0; color: var(--danger); font-weight: 800; }

.promo-box {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  padding: 28px;
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.promo-box .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--yellow); font-weight: 700; }
.promo-box h3 { color: white; margin: 6px 0; font-size: 1.4rem; }
.promo-box .code-row { display: flex; align-items: center; gap: 10px; }
.promo-box .code {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 1.5rem; font-weight: 800;
  background: var(--blue-deep);
  border: 2px dashed var(--yellow);
  padding: 12px 22px;
  border-radius: 8px;
  color: var(--yellow);
  letter-spacing: 0.1em;
}
.promo-box .copy-btn { background: var(--yellow); color: var(--blue-deep); border: none; padding: 12px 18px; border-radius: 8px; font-weight: 700; cursor: pointer; }

/* Categories grid (homepage) */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  text-align: center;
}
.cat-card:hover { border-color: var(--yellow); transform: translateY(-2px); background: var(--surface-2); }
.cat-card h3 { color: var(--text); margin: 8px 0; font-size: 1.1rem; }
.cat-card p { color: var(--text-muted); font-size: 14px; margin: 0; }
.cat-card .ico { width: 44px; height: 44px; background: var(--blue); border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; color: var(--yellow); font-weight: 800; font-size: 22px; margin-bottom: 8px; }

/* WC2026 countdown banner */
.wc-banner {
  background-image: linear-gradient(135deg, rgba(0,26,46,0.85), rgba(0,82,147,0.55)), url('images/speltips_wc2026_hero.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  margin: 28px 0;
  border: 1px solid var(--yellow);
  position: relative;
  overflow: hidden;
}
.wc-banner h2 { color: var(--yellow); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 8px; }
.wc-banner .lede { color: white; max-width: 640px; margin: 0 auto 20px; }
.wc-banner .countdown { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 24px 0; }
.wc-banner .cd-tile {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  min-width: 78px;
}
.wc-banner .cd-tile .num { font-size: 1.8rem; font-weight: 800; color: var(--yellow); display: block; line-height: 1; }
.wc-banner .cd-tile .lab { font-size: 11px; color: white; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* Footer */
.site-footer {
  background: var(--blue-deep);
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
  margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 320px; }
.footer-col h4 { color: var(--text); font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); font-size: 14px; }
.footer-col a:hover { color: var(--yellow); }
.rg-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.rg-block strong { color: var(--yellow); }
.rg-block a { color: var(--yellow); }
.copyright { text-align: center; padding-top: 20px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 13px; }

/* FAQ */
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq-list details[open] { border-color: var(--yellow); }
.faq-list summary { font-weight: 700; cursor: pointer; color: var(--text); list-style: none; position: relative; padding-right: 30px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 0; top: 0; color: var(--yellow); font-size: 22px; line-height: 1; transition: transform var(--transition); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details > p { margin-top: 12px; color: var(--text-muted); }

/* Breadcrumbs */
.crumbs { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; padding-top: 24px; }
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--yellow); }
.crumbs span { color: var(--text-dim); margin: 0 6px; }

/* Mobile */
@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-2); flex-direction: column; padding: 16px; border-bottom: 1px solid var(--border); }
  .nav.open { display: flex; }
  .nav a { padding: 12px; }
  .menu-toggle { display: inline-flex; }
  .review-header .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proscons { grid-template-columns: 1fr; }
  .promo-box { grid-template-columns: 1fr; text-align: center; }
  .quick-facts dl { grid-template-columns: 1fr; gap: 4px; }
  .quick-facts dt { color: var(--text-muted); margin-top: 8px; }
  section.block { padding: 56px 0; }
  .hero { min-height: 480px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .compare-table th:nth-child(n+4), .compare-table td:nth-child(n+4) { display: none; }
}

/* Live odds widget */
.live-odds-wrap { margin-top: 24px; }
.live-odds-meta { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; margin-bottom:16px; font-size:0.92rem; color:var(--text-muted); }
.live-odds-meta .pulse { display:inline-flex; align-items:center; gap:8px; color:var(--yellow); font-weight:600; }
.live-odds-meta .pulse::before { content:""; width:8px; height:8px; border-radius:50%; background:#22c55e; box-shadow:0 0 0 0 rgba(34,197,94,0.7); animation:pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(34,197,94,0.7)} 70%{box-shadow:0 0 0 10px rgba(34,197,94,0)} 100%{box-shadow:0 0 0 0 rgba(34,197,94,0)} }
.fixture-list { display:grid; gap:14px; }
.fixture-card { background:var(--card-bg); border:1px solid var(--border); border-radius:12px; padding:18px 20px; }
.fixture-head { display:flex; justify-content:space-between; align-items:baseline; gap:12px; margin-bottom:14px; flex-wrap:wrap; }
.fixture-teams { font-size:1.08rem; font-weight:700; }
.fixture-date { font-size:0.88rem; color:var(--text-muted); }
.fixture-odds { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:10px; }
.bookie-row { background:var(--bg-2); border:1px solid var(--border); border-radius:8px; padding:10px 12px; }
.bookie-name { font-size:0.78rem; font-weight:700; color:var(--yellow); text-transform:uppercase; letter-spacing:0.04em; margin-bottom:6px; }
.bookie-prices { display:grid; grid-template-columns:1fr 1fr 1fr; gap:6px; font-variant-numeric:tabular-nums; }
.bookie-prices > div { text-align:center; }
.bookie-prices .lab { font-size:0.7rem; color:var(--text-muted); display:block; }
.bookie-prices .px { font-weight:700; color:var(--text); }
.bookie-prices .px.best { color:#22c55e; }
.live-odds-loading { padding:40px 20px; text-align:center; color:var(--text-muted); }
.live-odds-error { padding:24px; background:rgba(239,68,68,0.08); border:1px solid rgba(239,68,68,0.3); border-radius:10px; color:var(--text); }

/* === Standardized footer (added 2026-05-07 overhaul) === */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 56px 0 24px; margin-top: 80px; }
.site-footer .footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 36px; }
.site-footer h4 { color: var(--yellow); font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 14px; font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.92rem; }
.site-footer ul li a:hover { color: var(--text); }
.site-footer .footer-about { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; margin: 0; }
.site-footer .footer-rg { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; margin: 0 0 12px; }
.site-footer .footer-rg-links a { color: var(--yellow); text-decoration: none; font-size: 0.88rem; line-height: 1.8; }
.site-footer .footer-rg-links a:hover { text-decoration: underline; }
.site-footer .footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.site-footer .footer-bottom p { color: var(--text-muted); font-size: 0.84rem; margin: 0 0 8px; line-height: 1.65; }
.site-footer .footer-tax { color: var(--text-muted); font-size: 0.78rem; opacity: 0.85; }

@media (max-width: 900px) {
  .site-footer .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .site-footer .footer-cols { grid-template-columns: 1fr; gap: 24px; }
}

/* === Hamburger menu, mobile-first === */
.menu-toggle { background: transparent; border: 1px solid var(--border-strong); color: var(--text); width: 40px; height: 40px; border-radius: 8px; display: none; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; }
.menu-toggle:hover { background: var(--bg-2); }

@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 20px 20px; z-index: 100; gap: 0; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 12px; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .nav a:last-child { border-bottom: none; }
  .menu-toggle { display: inline-flex; }
  .site-header .container { position: relative; }
}

/* === Match preview / review article styling === */
.article-body { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.article-body .byline { color: var(--text-muted); font-size: 0.86rem; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.article-body h1 { font-size: 2.4rem; line-height: 1.18; margin: 28px 0 16px; }
.article-body h2 { font-size: 1.55rem; line-height: 1.25; margin: 40px 0 14px; color: var(--text); }
.article-body h3 { font-size: 1.18rem; line-height: 1.3; margin: 28px 0 10px; }
.article-body p { line-height: 1.78; margin: 0 0 16px; }
.article-body ul, .article-body ol { line-height: 1.78; padding-left: 1.4em; margin-bottom: 16px; }
.article-body ul li { margin-bottom: 6px; }
.article-body table { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 0.92rem; }
.article-body table th, .article-body table td { padding: 10px 12px; border: 1px solid var(--border); text-align: left; }
.article-body table th { background: var(--bg-2); font-weight: 700; color: var(--yellow); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.04em; }
.article-body table td strong { color: #22c55e; }
.article-body .key-points { background: var(--bg-2); border-left: 3px solid var(--yellow); padding: 16px 20px; margin: 24px 0; border-radius: 0 8px 8px 0; }
.article-body .key-points ul { margin: 0; padding-left: 1.2em; }
.article-body .tipsruta { background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(34,197,94,0.02)); border: 1px solid rgba(34,197,94,0.3); border-radius: 12px; padding: 4px 16px 16px; margin: 24px 0; }
.article-body .tipsruta-label { display: inline-block; background: #22c55e; color: #042c1e; font-weight: 700; font-size: 0.74rem; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.06em; margin: 14px 0 0; }
.article-body blockquote { border-left: 3px solid var(--yellow); padding: 4px 18px; margin: 18px 0; color: var(--text-muted); font-style: italic; }
.article-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 18px 0; }
.article-body .article-cta { display: flex; align-items: center; gap: 14px; padding: 20px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; margin: 28px 0; flex-wrap: wrap; }
.article-body .skattetext { font-size: 0.86rem; color: var(--text-muted); padding: 14px 16px; background: rgba(255,179,0,0.06); border: 1px solid rgba(255,179,0,0.2); border-radius: 8px; margin: 18px 0; }

/* Bracket path component */
.bracket-path { display: grid; gap: 18px; margin: 24px 0; }
.bracket-scenario { background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; }
.bracket-scenario h3 { color: var(--yellow); margin: 0 0 14px; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.04em; }
.bracket-rounds { display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; }
.bracket-round { flex: 1; min-width: 130px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; }
.bracket-round-label { font-size: 0.72rem; color: var(--yellow); font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.bracket-round-opp { font-size: 0.86rem; color: var(--text); margin-bottom: 4px; }
.bracket-round-venue { font-size: 0.74rem; color: var(--text-muted); margin-bottom: 6px; }
.bracket-round-odds { font-size: 0.92rem; font-weight: 700; color: #22c55e; font-variant-numeric: tabular-nums; }
