/**
 * LiveAllGame.com - Master Stylesheet
 * Palette: Navy Blue (#0a1128, #111d3d), Pitch Green (#00c853, #10b981), Pure White & Slate (#f8fafc, #ffffff)
 */

:root {
  --navy-dark: #0a1128;
  --navy-mid: #111d3d;
  --navy-card: #1c2a4f;
  --green-pitch: #00c853;
  --green-pitch-hover: #00a844;
  --green-emerald: #10b981;
  --green-soft: #e8f5e9;
  --red-live: #ef4444;
  --red-soft: #fee2e2;
  --blue-fixture: #2563eb;
  --blue-soft: #dbeafe;
  --amber-warning: #f59e0b;
  
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;
  
  --border-light: #e2e8f0;
  --border-subtle: #cbd5e1;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverted: #ffffff;
  
  --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 2px 8px rgba(10, 17, 40, 0.06);
  
  --container-max: 1200px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Skip Navigation */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--navy-dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 15px;
}

/* Top Live Ticker Bar */
.top-ticker {
  background: var(--navy-dark);
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ticker-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.ticker-left {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-live);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ticker-feed {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: tickerSlide 40s linear infinite;
}
.ticker-item {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ticker-item strong {
  color: #ffffff;
}
.ticker-item:hover strong {
  color: var(--green-pitch);
}
.ticker-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: #94a3b8;
  white-space: nowrap;
}

/* Main Site Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo img {
  height: 42px;
  width: auto;
}

/* Navigation Menu */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
}
.nav-link:hover {
  color: var(--green-pitch-hover);
  background: var(--green-soft);
}
.nav-link.active {
  color: var(--green-pitch-hover);
  background: var(--green-soft);
  font-weight: 700;
}
.nav-link.badge-link {
  position: relative;
}
.nav-link .live-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red-live);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* Quick Sport Filter Bar */
.sport-bar {
  background: var(--navy-mid);
  padding: 10px 0;
}
.sport-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.sport-bar-inner::-webkit-scrollbar {
  display: none;
}
.sport-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sport-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
}
.sport-pill:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}
.sport-pill.active {
  color: #ffffff;
  background: var(--green-pitch);
}
.sport-pill.active .sport-icon {
  stroke: #ffffff;
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-primary);
}

/* Main Layout Structure */
.main-wrapper {
  flex: 1;
  padding: 30px 0 50px;
}
.layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
}
.layout-full {
  width: 100%;
}

/* Section Titles */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 10px;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--green-pitch);
  border-radius: 2px;
}
.section-action {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-pitch-hover);
}
.section-action:hover {
  text-decoration: underline;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.status-live {
  background: var(--red-soft);
  color: var(--red-live);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.status-upcoming {
  background: var(--blue-soft);
  color: var(--blue-fixture);
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.status-finished {
  background: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

/* Pulse Dot Animation */
.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--red-live);
  border-radius: 50%;
  display: inline-block;
  animation: pulseGlow 1.5s infinite;
}
@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Match Scoreboard Cards */
.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 25px;
}
.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.match-card:hover {
  border-color: var(--green-pitch);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.match-card.card-live {
  border-left: 4px solid var(--red-live);
}
.match-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.match-competition {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
}
.match-card-teams {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.match-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.team-crest-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--text-primary);
}
.team-crest {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}
.team-score {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy-dark);
  font-family: var(--font-mono);
}
.match-card.card-live .team-score {
  color: var(--navy-dark);
}
.match-card-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.match-summary-text {
  font-size: 0.8rem;
  color: var(--green-pitch-hover);
  font-weight: 600;
}

/* Match Details Center (match.php) */
.match-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.match-hero-meta {
  text-align: center;
  margin-bottom: 20px;
}
.match-hero-comp {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.match-hero-venue {
  font-size: 0.85rem;
  color: #94a3b8;
}
.match-hero-scoreboard {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}
.hero-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 35%;
}
.hero-team .team-crest {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
}
.hero-team-name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.hero-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-score-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  font-family: var(--font-mono);
  color: #ffffff;
}
.hero-status {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-pitch);
}

/* Statistics Bar Component */
.stats-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 25px;
}
.stat-row {
  margin-bottom: 16px;
}
.stat-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.stat-title {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}
.stat-bar-track {
  height: 8px;
  background: var(--bg-subtle);
  border-radius: var(--radius-full);
  display: flex;
  overflow: hidden;
}
.stat-bar-home {
  background: var(--green-pitch);
  height: 100%;
}
.stat-bar-away {
  background: var(--navy-mid);
  height: 100%;
}

/* Match Events Timeline */
.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 25px;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.timeline-item:last-child {
  border-bottom: none;
}
.timeline-time {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--navy-dark);
  min-width: 45px;
}
.timeline-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  background: var(--bg-subtle);
}
.timeline-icon.event-goal { background: var(--green-soft); color: var(--green-pitch-hover); }
.timeline-icon.event-yellow { background: #fef3c7; color: #d97706; }
.timeline-icon.event-red { background: var(--red-soft); color: var(--red-live); }
.timeline-icon.event-wicket { background: #fce7f3; color: #be185d; }
.timeline-icon.event-boundary { background: var(--blue-soft); color: var(--blue-fixture); }
.timeline-info {
  flex: 1;
}
.timeline-player {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}
.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Cricket Scorecard Details */
.cricket-scorecard {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 25px;
}
.cricket-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 10px;
}
.cricket-table th {
  background: var(--bg-subtle);
  padding: 8px 12px;
  text-align: left;
  font-weight: 700;
  color: var(--navy-dark);
}
.cricket-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-light);
}

/* Standings Table (leagues.php / league.php) */
.table-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 30px;
}
.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.standings-table th {
  background: var(--navy-mid);
  color: #fff;
  padding: 12px 14px;
  font-weight: 700;
  text-align: center;
}
.standings-table th.th-team {
  text-align: left;
}
.standings-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}
.standings-table td.td-team {
  text-align: left;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.standings-table tr:hover {
  background: #f8fafc;
}
.form-pill {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-right: 3px;
}
.form-w { background: var(--green-pitch); }
.form-d { background: var(--text-muted); }
.form-l { background: var(--red-live); }

/* Sports News Cards & Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-pitch);
  box-shadow: var(--shadow-md);
}
.article-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--navy-mid);
}
.article-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-cat {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green-pitch-hover);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.article-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}
.article-card:hover .article-title {
  color: var(--green-pitch-hover);
}
.article-snippet {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}
.article-meta {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
}

/* Single Article Detail (article.php) */
.article-header {
  margin-bottom: 25px;
}
.article-headline {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--navy-dark);
  margin-bottom: 15px;
}
.article-author-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.author-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.article-featured-img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}
.article-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 25px;
}
.article-content {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #1e293b;
}
.article-content p {
  margin-bottom: 20px;
}
.article-content h3 {
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin: 30px 0 15px;
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--navy-dark);
  font-weight: 600;
}
.breadcrumb a:hover {
  color: var(--green-pitch);
}
.breadcrumb-separator {
  color: var(--border-subtle);
}

/* Google AdSense Compliant Containers */
.ad-placement-wrapper {
  margin: 25px 0;
  text-align: center;
}
.ad-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 6px;
}
.ad-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  overflow: hidden;
  margin: 0 auto;
}
.ad-placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.ad-placeholder-inner {
  text-align: center;
  color: var(--text-muted);
}
.ad-badge {
  display: inline-block;
  background: #e2e8f0;
  color: #475569;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.ad-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
}
.ad-meta {
  font-size: 0.75rem;
  color: #64748b;
}
.ad-note {
  display: block;
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 4px;
}

/* Forms (Contact, Search, Filter) */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.95rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--green-pitch);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.15);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--green-pitch);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--green-pitch-hover);
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--navy-dark);
  color: #ffffff;
}
.btn-navy:hover {
  background: var(--navy-mid);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--green-pitch);
  color: var(--green-pitch-hover);
}

/* Alert Messages */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.alert-success {
  background: var(--green-soft);
  color: #166534;
  border: 1px solid #bbf7d0;
}
.alert-error {
  background: var(--red-soft);
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Empty States */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-card);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-muted);
}
.empty-state svg {
  margin-bottom: 12px;
  stroke: var(--text-muted);
}
.empty-state h4 {
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy-dark);
}
.page-link:hover {
  border-color: var(--green-pitch);
  color: var(--green-pitch-hover);
}
.page-link.active {
  background: var(--green-pitch);
  border-color: var(--green-pitch);
  color: #ffffff;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #94a3b8;
  font-size: 0.88rem;
  margin-top: auto;
  border-top: 3px solid var(--green-pitch);
}
.footer-top {
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a:hover {
  color: var(--green-pitch);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 0.8rem;
  text-align: center;
}
.footer-policy-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}
.footer-policy-row a {
  color: #cbd5e1;
}
.footer-policy-row a:hover {
  color: var(--green-pitch);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  z-index: 9999;
  display: none;
}
.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-banner h5 {
  color: var(--navy-dark);
  font-size: 1rem;
}
.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .layout-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 60px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 15px 20px;
    border-bottom: 2px solid var(--border-light);
    box-shadow: var(--shadow-md);
  }
  .main-nav.nav-open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero-team-name {
    font-size: 1rem;
  }
  .hero-score-box {
    font-size: 1.6rem;
    padding: 8px 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .ticker-right {
    display: none;
  }
}
