/* ============================================
   Top Football Tipster - Site Stylesheet
   Best Football Betting Sites UK 2026
   ============================================ */

/* CSS Variables */
:root {
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --primary-light: #e8f0fe;
  --accent: #ff6b35;
  --accent-dark: #e55a2b;
  --success: #0d904f;
  --success-light: #e6f4ea;
  --warning: #f9ab00;
  --danger: #d93025;
  --dark: #0a1628;
  --dark-secondary: #122b40;
  --dark-card: #1a3550;
  --gray-900: #1a1a2e;
  --gray-800: #2d2d44;
  --gray-700: #404060;
  --gray-600: #6b7280;
  --gray-500: #9ca3af;
  --gray-400: #c4c4c4;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --gold: #fbbf24;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1200px;
  --max-width-narrow: 900px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--gray-900);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-top: 2rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--gray-700); }
ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; color: var(--gray-700); }
li { margin-bottom: 0.5rem; }
strong { color: var(--gray-900); }
blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
blockquote p { color: var(--gray-800); margin-bottom: 0; }

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 60px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4, .section-dark p, .section-dark li { color: var(--white); }
.section-dark .text-muted { color: var(--gray-400); }

/* Header / Navigation */
.site-header {
  background: var(--dark);
  padding: 6px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo img {
  height: 90px;
  width: 90px;
  object-fit: contain;
}
.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav > a, .nav-dropdown > .nav-dropdown-toggle {
  color: var(--gray-300);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.site-nav > a:hover, .site-nav > a.active,
.nav-dropdown:hover > .nav-dropdown-toggle {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.dropdown-arrow { font-size: 0.65rem; opacity: 0.7; }

/* Dropdown Menu */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-secondary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 8px 0;
  min-width: 220px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  color: var(--gray-300);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 400;
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-dropdown-menu .dropdown-heading {
  color: var(--gray-500);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 16px 4px;
  font-weight: 700;
  pointer-events: none;
}
.nav-dropdown-menu .dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 0;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  padding: 80px 20px 20px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  color: var(--gray-300);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.mobile-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
}

/* Hero */
.hero-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="200" cy="100" r="300" fill="rgba(26,115,232,0.05)"/><circle cx="1000" cy="400" r="250" fill="rgba(255,107,53,0.03)"/></svg>') no-repeat center/cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-section h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.hero-section .hero-subtitle {
  color: var(--gray-400);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 50px;
  color: var(--gray-300);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-badge svg { width: 16px; height: 16px; }

/* Author / EEAT Box */
.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin: 2rem 0;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.author-info { flex: 1; }
.author-name { font-weight: 700; color: var(--gray-900); font-size: 0.95rem; }
.author-role { color: var(--gray-600); font-size: 0.85rem; }
.author-meta {
  display: flex;
  gap: 16px;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.breadcrumbs a { color: var(--gray-500); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { margin: 0 6px; }

/* Table of Contents */
.toc {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 2rem 0;
}
.toc-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--gray-900);
}
.toc ol {
  counter-reset: toc;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.toc li {
  counter-increment: toc;
  margin-bottom: 6px;
}
.toc li::before {
  content: counter(toc) ". ";
  color: var(--primary);
  font-weight: 600;
}
.toc a { color: var(--gray-700); font-size: 0.9rem; }
.toc a:hover { color: var(--primary); }

/* Betting Site Cards */
.site-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  transition: all 0.3s;
  position: relative;
}
.site-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.site-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.site-card.featured::before {
  content: 'Editor\'s Pick';
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: var(--dark);
  padding: 2px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.site-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.site-card-rank {
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.site-card-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gray-900);
  flex: 1;
}
.site-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.star { color: var(--gold); font-size: 1.1rem; }
.star-empty { color: var(--gray-300); font-size: 1.1rem; }
.rating-score {
  font-weight: 700;
  color: var(--gray-900);
  margin-left: 6px;
  font-size: 0.95rem;
}
.site-card-bonus {
  background: var(--success-light);
  border: 1px solid var(--success);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bonus-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--success);
  letter-spacing: 0.5px;
}
.bonus-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
}
.site-card-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.feature-check { color: var(--success); font-weight: 700; }
.feature-cross { color: var(--danger); font-weight: 700; }
.site-card-body { margin-bottom: 16px; }
.site-card-body p { font-size: 0.95rem; margin-bottom: 0.75rem; }
.site-card-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.pros-list, .cons-list { list-style: none; padding: 0; margin: 0; }
.pros-list li, .cons-list li {
  padding: 4px 0 4px 24px;
  position: relative;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.pros-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
  font-size: 1.1rem;
}
.cons-list li::before {
  content: '-';
  position: absolute;
  left: 2px;
  color: var(--danger);
  font-weight: 800;
  font-size: 1.2rem;
}
.site-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.site-card-terms {
  font-size: 0.75rem;
  color: var(--gray-500);
  flex: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--primary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
}
.comparison-table thead th {
  background: var(--dark);
  color: var(--white);
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comparison-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
  vertical-align: middle;
}
.comparison-table tbody tr:nth-child(even) { background: var(--gray-50); }
.comparison-table tbody tr:hover { background: var(--primary-light); }
.comparison-table .site-name-cell {
  font-weight: 700;
  color: var(--gray-900);
}

/* Info Boxes */
.info-box {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  border-left: 4px solid;
}
.info-box-blue {
  background: var(--primary-light);
  border-color: var(--primary);
}
.info-box-green {
  background: var(--success-light);
  border-color: var(--success);
}
.info-box-yellow {
  background: #fffbeb;
  border-color: var(--warning);
}
.info-box-red {
  background: #fef2f2;
  border-color: var(--danger);
}
.info-box p { margin-bottom: 0; }
.info-box-title {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FAQ Section */
.faq-section { margin: 2rem 0; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gray-500);
  transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 20px 20px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Key Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 2rem 0;
}
.stat-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Internal Link Cards */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 2rem 0;
}
.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.2s;
  text-decoration: none;
}
.link-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.link-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.link-card-text h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  color: var(--gray-900);
}
.link-card-text p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  margin-top: 0;
}
.footer-col a {
  display: block;
  color: var(--gray-400);
  padding: 4px 0;
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
}
.footer-bottom p { color: var(--gray-500); font-size: 0.8rem; margin-bottom: 8px; }
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-logos img { height: 32px; opacity: 0.6; }
.responsible-gambling-banner {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
}
.responsible-gambling-banner p { color: var(--gray-400); font-size: 0.85rem; margin-bottom: 8px; }
.responsible-gambling-banner a { color: var(--primary); }

/* Utility Classes */
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }
.text-small { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.fw-bold { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }

/* Last Updated Banner */
.update-banner {
  background: var(--primary-light);
  border: 1px solid rgba(26,115,232,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Methodology Box */
.methodology-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 2rem 0;
}
.methodology-box h3 { margin-top: 0; }
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 1rem;
}
.methodology-item { text-align: center; padding: 16px; }
.methodology-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.25rem;
}
.methodology-item h4 { margin: 0 0 4px; font-size: 0.9rem; }
.methodology-item p { font-size: 0.8rem; color: var(--gray-600); margin: 0; }

/* Responsive */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .mobile-toggle { display: block; }
  .hero-section { padding: 60px 0 40px; }
  .section { padding: 40px 0; }
  .site-card-pros-cons { grid-template-columns: 1fr; }
  .site-card-header { flex-direction: column; align-items: flex-start; }
  .site-card-footer { flex-direction: column; align-items: stretch; }
  .site-card-footer .btn { text-align: center; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table thead th, .comparison-table tbody td { padding: 10px 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .author-box { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Print */
@media print {
  .site-header, .site-footer, .btn, .mobile-toggle, .mobile-nav { display: none; }
  body { font-size: 12pt; color: #000; }
  .site-card { border: 1px solid #ccc; page-break-inside: avoid; }
}
