/* 2026 FIFA World Cup Betting Odds — Site Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Inter:wght@400;500;600&display=swap');
:root {
  --red: #C0272D;
  --red-light: #ff4c4c;
  --red-muted: #F5E6E6;
  --blue: #1A3A6B;
  --blue-mid: #2352A0;
  --blue-light: #EBF0F8;
  --white: #fff;
  --off-white: #F7F7F5;
  --border: #E2E2DC;
  --gray: #6B7280;
  --gray-dark: #374151;
  --text: #1F2937;
  --text-light: #4B5563;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: var(--blue-mid);
  text-decoration: underline;
}
a:hover {
  color: var(--red);
}
/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-logo span {
  color: var(--blue);
}
/* ── NAV ── */
nav.main-nav {
  position: relative;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 4px;
}
.nav-list > li {
  position: relative;
}
.nav-list > li > a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-dark);
  padding: 8px 14px;
  border-radius: 4px;
  display: block;
  transition: background 0.15s, color 0.15s;
}
.nav-list > li > a:hover, .nav-list > li:hover > a {
  background: var(--red-muted);
  color: var(--red);
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -80px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  min-width: 640px;
  padding: 20px;
  z-index: 200;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.nav-list > li:hover .dropdown {
  display: block;
}
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dropdown-group h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
}
.dropdown-group ul {
  list-style: none;
}
.dropdown-group ul li a {
  font-size: 13px;
  color: var(--text-light);
  display: block;
  padding: 3px 0;
  transition: color 0.1s;
}
.dropdown-group ul li a:hover {
  color: var(--red);
}
/* ── HERO ── */
.hero {
  background: var(--blue);
  padding: 64px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(192, 39, 45, 0.25) 0%, transparent 65%);
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  position: relative;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  position: relative;
  margin-bottom: 20px;
}
.hero h1 em {
  color: var(--red-light);
  font-style: normal;
  display: block;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
}
.hero-sub a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #5dafe9;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
/* ── CONTENT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section.content-section {
  padding: 56px 24px;
}
section.content-section:nth-child(even) {
  background: var(--white);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--blue);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.section-title span {
  color: var(--red);
}
.section-subtitle {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 32px;
}
/* ── ODDS TABLE ── */
.odds-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
	margin: auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}
.odds-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 12px 16px;
  text-align: left;
}
.odds-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.odds-table tr:last-child td {
  border-bottom: none;
}
.odds-table tr:hover td {
  background: var(--blue-light);
}
.odds-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-fav {
  background: var(--red-muted);
  color: var(--red);
  border: 1px solid #e8b0b2;
}
.badge-contender {
  background: var(--blue-light);
  color: var(--blue-mid);
  border: 1px solid #b0c4e8;
}
.badge-longshot {
  background: #F3F4F6;
  color: var(--gray);
  border: 1px solid var(--border);
}
/* ── GROUP GRID ── */
.groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.group-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 8px;
  padding: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.group-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.group-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.group-teams {
  list-style: none;
}
.group-teams li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.group-teams li:last-child {
  border-bottom: none;
}
.group-teams li a {
  color: var(--text);
}
.group-teams li a:hover {
  color: var(--red);
}
.team-odds-sm {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
}
/* ── SPORTSBOOK CARDS ── */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.book-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.book-rank {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #2abb19;
  line-height: 1;
}
.book-rank sup {
  font-size: 50%;
  color: #000;
  font-weight: normal;
}
.book-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
}
.book-bonus {
  font-size: 14px;
  color: var(--red);
  font-weight: 600;
}
.book-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-light);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}
/* ── ARTICLE TEXT ── */
.article-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.article-body p {
  margin-bottom: 20px;
}
.article-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--blue);
  margin: 40px 0 16px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 8px;
}
.article-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  margin: 28px 0 12px;
}
/* ── BACK LINK ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
  transition: color 0.15s;
}
.back-link:hover {
  color: var(--red);
}
.back-link::before {
  content: '←';
  font-size: 16px;
}
/* ── TEAM PAGE HERO ── */
.team-hero {
  background: var(--blue);
  padding: 48px 24px 56px;
  border-bottom: 3px solid var(--red);
    text-align: center;
}
.team-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.team-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}
.team-breadcrumb a:hover {
  color: var(--white);
}
.team-breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 6px;
}
.team-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.team-hero h1 em {
  color: var(--red-light);
  font-style: normal;
}
.team-hero-odds {
  display: flex;
  gap: 32px;
  flex-wrap: balance;
  margin-top: 8px;
  max-width: 510px;
  margin: 8px auto 0px auto;
}
.team-odd-block .lbl {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.team-odd-block .val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
/* ── FOOTER ── */
footer {
  background: var(--blue);
  border-top: 3px solid var(--red);
  padding: 40px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
footer a {
  color: rgba(255, 255, 255, 0.55);
}
footer a:hover {
  color: var(--white);
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-logo span {
  color: var(--red-light);
}
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    height: auto;
    padding: 12px 0;
    gap: 8px;
  }
  .dropdown {
    min-width: 320px;
  }
  .dropdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-meta {
    gap: 24px;
    flex-wrap: wrap;
  }
  .groups-grid {
    grid-template-columns: 1fr;
  }
  .books-grid {
    grid-template-columns: 1fr;
  }
  .team-hero-odds {
    gap: 20px;
  }
}