/* CSS Variables & Design System - BOLD FLAT DESIGN SYSTEM */
:root {
  /* Flat Design Color Tokens */
  --bg-white: #FFFFFF;
  --bg-charcoal: #111827;
  --blue: #3B82F6;
  --green: #10B981;
  --amber: #F59E0B;
  --muted: #F3F4F6;
  --border-color: #E5E7EB;

  /* Theme semantic mappings with absolute flat definition */
  --primary-bg: #111827; 
  --secondary-bg: #3B82F6; 
  --surface-light: #FFFFFF;
  --surface-dark: #1F2937;
  --accent-primary: #10B981; 
  --accent-secondary: #3B82F6; 
  --accent-tertiary: #F59E0B; 
  --text-light: #FFFFFF;
  --text-dark: #111827;
  --text-muted-dark: #6B7280;
  --text-muted-light: #9CA3AF;
  --border-dark: #374151;
  
  --font-main: 'Outfit', system-ui, -apple-system, sans-serif;
  --transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.15s ease, border-color 0.15s ease;
}

/* Base Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  box-shadow: none !important; /* STRICTLY NO DROP SHADOWS OR MATERIAL ELEVATIONS */
  text-shadow: none !important;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Overrides for Tight Geometric Feel */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em; /* Tight letter tracking */
  color: var(--text-dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation (Ultra-Slim Premium Alignment) */
.main-header {
  background-color: var(--bg-charcoal);
  border-bottom: 2px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.6rem 0; /* Slimmed from 1.25rem for a perfect compact profile */
  display: flex;
  align-items: center;
  min-height: 58px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand-logo {
  text-decoration: none;
  font-size: 1.35rem; /* Balanced, slim sizing */
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  line-height: 1;
}

.logo-accent {
  color: var(--text-light);
}

.logo-sub {
  color: var(--blue);
}

.nav-menu {
  display: flex;
  gap: 0.5rem; /* Tight compact gap for a sleeker profile */
  align-items: center;
}

.nav-link {
  color: var(--text-muted-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem; /* Refined micro-typography */
  text-transform: uppercase;
  letter-spacing: 0.08em; /* Elegant high-end tracking */
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  border: 2px solid transparent; /* Prevents jitter/layout shift */
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--blue); /* Crisp visual outline feedback */
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  justify-content: center;
  align-items: center;
}

.mobile-toggle .bar {
  width: 22px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

/* Hero Section (Bold Poster Block Look with Flat Geometric Decorations) */
.hero-section {
  background-color: var(--blue); /* Rich solid blue block */
  color: var(--text-light);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid var(--bg-charcoal);
}

/* Flat Geometric Shapes in Background (Poster Vibe) */
.hero-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background-color: rgba(17, 24, 39, 0.1);
  bottom: -40px;
  left: 5%;
  transform: rotate(15deg);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1.0fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  background-color: var(--bg-charcoal);
  color: var(--text-light);
  border: 2px solid var(--text-light);
  padding: 0.5rem 1.25rem;
  border-radius: 0; /* Pure geometry */
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Solid Bold Buttons without gradients or shadows. Snappy hover states. */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--bg-charcoal);
  color: var(--text-light);
  border: 2px solid var(--bg-charcoal);
}

.btn-primary:hover {
  background-color: var(--bg-white);
  color: var(--bg-charcoal);
  transform: scale(1.05); /* Snappy scale feedback */
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 4px solid var(--text-light); /* Bold 4px solid border */
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--blue);
  transform: scale(1.05);
}

.hero-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid var(--bg-charcoal); /* Flat structural border, no shadow */
}

.hero-media-asset {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Sections Base Styling - Dynamic Alternating Color Blocks */
.section-padding {
  padding: 5rem 0;
  border-bottom: 3px solid var(--border-color);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.section-desc {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted-dark);
  font-size: 1.1rem;
}

/* Editorial Match Index (Muted Grey background, White cards, completely Flat) */
.match-index-section {
  background-color: var(--muted);
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.match-card-simple {
  background-color: var(--bg-white);
  border: 2px solid var(--border-color); /* Flat structural border */
  border-radius: 6px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.match-card-simple:hover {
  transform: scale(1.03); /* snappy scaling feedback */
  border-color: var(--blue);
}

.card-group-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-color: var(--bg-charcoal);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.card-teams {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.vs-divider {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  background: var(--muted);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.card-stats {
  border-top: 2px solid var(--border-color);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.stat-label {
  color: var(--text-muted-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.stat-value {
  color: var(--text-dark);
  font-weight: 800;
}

.font-mono {
  font-family: monospace;
}

.text-accent {
  color: var(--green); /* Emerald Green */
}

.text-secondary-accent {
  color: var(--blue); /* Support Blue */
}

.card-action-btn {
  margin-top: auto;
  text-decoration: none;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.card-action-btn:hover {
  color: var(--bg-charcoal);
  transform: translateX(4px);
}

/* Championship Race Snapshot (High Contrast Table) */
.title-context-section {
  background-color: var(--bg-charcoal);
  color: var(--text-light);
}

.title-context-section .section-title {
  color: var(--text-light);
}

.table-container {
  overflow-x: auto;
  background-color: var(--surface-dark);
  border: 2px solid var(--border-dark);
  border-radius: 6px;
}

.favorites-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.favorites-table th {
  background-color: var(--bg-charcoal);
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 3px solid var(--border-dark);
}

.favorites-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 2px solid var(--border-dark);
  font-size: 1rem;
  vertical-align: middle;
}

.favorites-table tr:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-light);
}

.rank-1 {
  background-color: var(--amber);
  color: var(--bg-charcoal);
}

.rank-2 {
  background-color: var(--blue);
  color: var(--text-light);
}

.rank-3 {
  background-color: #9CA3AF;
  color: var(--bg-charcoal);
}

.country-cell {
  font-size: 1.1rem;
}

.odds-chip {
  background-color: var(--bg-charcoal);
  border: 2px solid var(--border-dark);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-family: monospace;
  font-weight: 700;
  color: var(--text-light);
}

.chance-chip {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--green);
  border: 2px solid var(--green);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-weight: 800;
}

/* Expanded Match Previews (Alternating pure white and muted blocks) */
.expanded-previews-section {
  background-color: var(--bg-white);
}

.previews-container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.preview-block {
  background-color: var(--muted);
  border-radius: 6px;
  border: 2px solid var(--border-color);
  padding: 3rem;
  position: relative;
  transition: var(--transition);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.group-pill {
  background-color: var(--bg-charcoal);
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.preview-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 6px;
  border: 2px solid var(--border-color);
}

.compare-side {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.compare-country {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.compare-stats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.c-stat {
  background: var(--muted);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  border: 2px solid var(--border-color);
  color: var(--text-muted-dark);
  font-weight: 500;
}

.c-stat strong {
  color: var(--text-dark);
  font-weight: 800;
}

.compare-vs {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-light);
  background: var(--bg-charcoal);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.preview-narrative {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

/* Group Race Context Grid */
.group-race-section {
  background-color: var(--bg-charcoal);
  color: var(--text-light);
  border-bottom: 4px solid var(--blue);
}

.group-race-section .section-title {
  color: var(--text-light);
}

.group-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.group-summary-card {
  background-color: var(--surface-dark);
  border: 2px solid var(--border-dark);
  border-radius: 6px;
  padding: 1.5rem;
  transition: var(--transition);
}

.group-summary-card:hover {
  border-color: var(--blue);
  transform: scale(1.03);
}

.g-header {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-dark);
  padding-bottom: 0.5rem;
}

.g-body {
  font-size: 0.95rem;
  color: var(--text-muted-light);
}

/* Host Nations Watch Cards (Poster Design with Solid Colored Headers) */
.hosts-section {
  background-color: var(--muted);
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.host-card {
  background-color: var(--bg-white);
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.host-card:hover {
  transform: scale(1.03);
  border-color: var(--text-dark);
}

/* Bold Custom Colors for Co-Host Headers */
.host-usa .host-flag-placeholder {
  background: var(--blue);
}
.host-mexico .host-flag-placeholder {
  background: var(--green);
}
.host-canada .host-flag-placeholder {
  background: var(--amber);
}

.host-flag-placeholder {
  color: var(--text-light);
  padding: 3rem 1.5rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  border-bottom: 4px solid var(--bg-charcoal);
}

.host-info {
  padding: 2rem;
}

.host-country {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.host-badge {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.host-divider {
  border: 0;
  height: 2px;
  background-color: var(--border-color);
  margin-bottom: 1.25rem;
}

.host-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.host-stat-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--muted);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  border: 2px solid var(--border-color);
}

.h-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

.h-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* Guide / Methodological Note */
.guide-section {
  background-color: var(--bg-white);
}

.guide-box {
  background-color: var(--muted);
  border-left: 6px solid var(--green);
  border-top: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  border-radius: 6px;
  padding: 3rem;
}

.guide-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.guide-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.guide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.guide-list li {
  font-size: 1rem;
  color: var(--text-dark);
  padding-left: 2rem;
  position: relative;
}

.guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background-color: var(--green);
  border-radius: 2px;
}

/* FAQ Accordion Styling (Thick borders and pure flat geometry) */
.faq-section {
  background-color: var(--muted);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.faq-item.active {
  border-color: var(--blue);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-trigger:hover {
  background-color: var(--muted);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--blue);
  font-weight: 800;
}

.faq-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--bg-white);
}

.faq-content p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
}

.faq-item.active .faq-content {
  max-height: 1000px;
}

/* Legal Pages Content Styling */
.legal-hero {
  background-color: var(--bg-charcoal);
  color: var(--text-light);
  padding: 5rem 0 3rem;
  border-bottom: 6px solid var(--blue);
}

.legal-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.legal-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted-light);
}

.legal-content-section {
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 5rem 0;
}

.legal-article {
  max-width: 850px;
  margin: 0 auto;
}

.legal-article h2 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  border-left: 6px solid var(--blue);
  padding-left: 0.75rem;
}

.legal-article p {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-dark);
}

.legal-article ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: square;
}

.legal-article li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Footer Design (Thick accent divider and charcoal flat structure) */
.main-footer {
  background-color: var(--bg-charcoal);
  color: var(--text-light);
  border-top: 6px solid var(--blue);
  padding: 5rem 0 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 2px solid var(--border-dark);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.footer-brand-info .brand-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-tagline {
  color: var(--text-muted-light);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-address h4 {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.address-detail {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link {
  color: var(--text-muted-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-nav-link:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.copyright-text {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  font-weight: 500;
}

.disclaimer-text {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

/* Clean, Direct Motion (snappy transition and layout updates on visible) */
.animate-on-scroll {
  opacity: 1; /* Instant loading with zero artificial depth delay */
  transform: none;
}

/* Responsive Rules */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-content {
    align-items: center;
  }

  .hero-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-charcoal);
    border-bottom: 3px solid var(--blue);
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .preview-block {
    padding: 1.5rem;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
  }

  .compare-vs {
    margin: 0.5rem auto;
  }

  .compare-stats-list {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 1.75rem;
  }
}