/*
Theme Name: Football Tips
Theme URI: https://football-tips.co.uk
Author: football-tips.co.uk
Description: A professional football betting tips theme with custom post types for each league, team badge database, active tip listings, and affiliate bookie integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: football-tips
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --green-900: #053d26;
  --green-800: #0a5c38;
  --green-700: #0f7a4a;
  --green-600: #13924f; /* primary brand */
  --green-500: #1aad5e;
  --green-400: #3dc87a;
  --green-100: #d4f5e2;
  --green-50:  #edfaf3;

  --gold-500: #f0b429;
  --gold-400: #faca57;
  --gold-100: #fef3c7;

  --red-500:  #e53e3e;
  --red-100:  #fff5f5;

  --gray-950: #0d0f0e;
  --gray-900: #111312;
  --gray-800: #1c1f1d;
  --gray-700: #2a2e2b;
  --gray-600: #3d4340;
  --gray-400: #6b736e;
  --gray-300: #9aa39d;
  --gray-200: #c8d0ca;
  --gray-100: #e8ece9;
  --gray-50:  #f4f6f4;
  --white:    #ffffff;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --nav-height: 60px;
  --max-width:  1160px;
  --content-width: 780px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); text-transform: uppercase; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); text-transform: uppercase; }
h3 { font-size: 1.25rem; text-transform: uppercase; }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; text-transform: none; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

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

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

.site-main {
  min-height: calc(100vh - var(--nav-height) - 200px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gray-900);
  border-bottom: 2px solid var(--green-600);
  height: var(--nav-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__icon {
  width: 34px;
  height: 34px;
  background: var(--green-600);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}

.site-logo__text span {
  color: var(--green-400);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.primary-nav a {
  display: block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.primary-nav a:hover,
.primary-nav .current-menu-item a {
  color: var(--white);
  background: var(--gray-700);
}

.nav-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-400);
  border: 1px solid var(--green-700);
  border-radius: 20px;
  padding: 4px 12px;
  letter-spacing: 0.05em;
}

.nav-live-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  padding: 4px;
}

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.home-hero {
  background: var(--gray-900);
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--gray-700);
}

.home-hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 10px;
}

.home-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.home-hero__title em {
  font-style: normal;
  color: var(--green-400);
}

.home-hero__subtitle {
  font-size: 15px;
  color: var(--gray-300);
  margin-bottom: 28px;
}

.stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: fit-content;
}

.stat-block {
  padding: 14px 28px;
  border-right: 1px solid var(--gray-700);
  text-align: center;
}

.stat-block:last-child { border-right: none; }

.stat-block__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-block__value--green { color: var(--green-400); }
.stat-block__value--gold  { color: var(--gold-500); }

.stat-block__label {
  font-size: 11px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================================
   LEAGUE FILTER BAR
   ============================================================ */
.league-filter {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
}

.league-filter__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
}

.league-filter__inner::-webkit-scrollbar { display: none; }

.league-filter__btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  text-decoration: none;
  cursor: pointer;
}

.league-filter__btn:hover {
  color: var(--gray-900);
}

.league-filter__btn.is-active {
  color: var(--green-700);
  border-bottom-color: var(--green-600);
}

.league-filter__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.league-filter__count {
  font-size: 11px;
  background: var(--gray-100);
  color: var(--gray-400);
  border-radius: 20px;
  padding: 1px 7px;
  font-weight: 600;
}

.league-filter__btn.is-active .league-filter__count {
  background: var(--green-100);
  color: var(--green-700);
}

/* ============================================================
   TIPS FEED
   ============================================================ */
.tips-feed {
  padding: 28px 0 60px;
}

.tips-feed__section {
  margin-bottom: 40px;
}

.league-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.league-heading__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.league-heading__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-900);
}

.league-heading__rule {
  flex: 1;
  height: 1px;
  background: var(--gray-100);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

/* ============================================================
   TIP CARD
   ============================================================ */
.tip-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.tip-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tip-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.tip-card__league {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.03em;
}

.tip-card__kickoff {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray-400);
}

.tip-card__kickoff-icon { font-size: 13px; }

.tip-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Fixture */
.fixture {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fixture__team {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.fixture__team--home { align-items: flex-start; text-align: left; }
.fixture__team--away { align-items: flex-end;   text-align: right; }

.fixture__badge-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.fixture__badge-wrap img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.fixture__badge-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.fixture__team-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.2;
}

.fixture__vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.fixture__vs-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-300);
  text-transform: uppercase;
}

/* Tip row */
.tip-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 10px 14px;
}

.tip-row__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  flex-shrink: 0;
}

.tip-row__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  flex: 1;
}

.odds-badge {
  background: var(--green-50);
  color: var(--green-700);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--green-100);
  flex-shrink: 0;
}

/* Bookie + CTA */
.tip-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.bookie-logo-wrap {
  height: 30px;
  max-width: 90px;
}

.bookie-logo-wrap img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.bookie-name-fallback {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}

.confidence-stars {
  display: flex;
  gap: 3px;
  align-items: center;
}

.confidence-stars__star {
  font-size: 13px;
  color: var(--gray-200);
}

.confidence-stars__star.is-filled {
  color: var(--gold-500);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  border: none;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--green-600);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-700);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--green-700);
  border: 1px solid var(--green-200, #a7e3c4);
}

.btn--outline:hover {
  background: var(--green-50);
}

.btn--ghost {
  background: var(--gray-100);
  color: var(--gray-700);
}

.btn--ghost:hover { background: var(--gray-200); }

.btn--large {
  padding: 13px 28px;
  font-size: 15px;
  border-radius: var(--radius-lg);
}

.tip-card__writeup {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   SINGLE MATCH PAGE
   ============================================================ */
.match-hero {
  background: var(--gray-900);
  padding: 40px 0;
}

.match-hero__breadcrumb {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.match-hero__breadcrumb a { color: var(--gray-300); }
.match-hero__breadcrumb a:hover { color: var(--white); }

.match-hero__fixture {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.match-hero__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 120px;
}

.match-hero__badge {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.match-hero__badge-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.match-hero__team-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
}

.match-hero__vs {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-600);
  text-transform: uppercase;
}

.match-hero__meta {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
}

.match-content {
  padding: 40px 0 60px;
}

.match-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.match-writeup {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
}

.match-writeup h2,
.match-writeup h3 {
  margin-bottom: 12px;
  margin-top: 28px;
  color: var(--gray-900);
}

.match-writeup h2:first-child,
.match-writeup h3:first-child { margin-top: 0; }

/* Sidebar */
.match-sidebar { position: sticky; top: calc(var(--nav-height) + 16px); }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 16px;
}

.sidebar-card__header {
  padding: 12px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}

.sidebar-card__body { padding: 16px; }

.tip-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-50);
  font-size: 13px;
}

.tip-summary-row:last-child { border-bottom: none; }
.tip-summary-row__label { color: var(--gray-400); }
.tip-summary-row__value { font-weight: 600; color: var(--gray-900); }

.bet-cta {
  background: var(--green-600);
  border-radius: var(--radius-xl);
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
}

.bet-cta__bookie-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 4px;
  margin: 0 auto 14px;
  width: 64px;
  height: 64px;
}

.bet-cta__bookie-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.bet-cta__tip {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.bet-cta__odds {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 14px;
}

.bet-cta__btn {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--white);
  color: var(--green-700);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: center;
  transition: background 0.15s;
  text-decoration: none;
}

.bet-cta__btn:hover {
  background: var(--green-50);
  color: var(--green-800);
}

.bet-cta__disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
  line-height: 1.5;
}

/* ============================================================
   LEAGUE ARCHIVE PAGE
   ============================================================ */
.league-archive-hero {
  background: var(--gray-900);
  padding: 32px 0;
  border-bottom: 3px solid var(--green-600);
}

.league-archive-hero__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.league-badge-large {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.league-archive-hero__info { flex: 1; }

.league-archive-hero__title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.league-archive-hero__sub {
  font-size: 13px;
  color: var(--gray-400);
}

/* ============================================================
   RESPONSIBLE GAMBLING NOTICE
   ============================================================ */
.rgd-notice {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.55;
}

.rgd-notice__icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.rgd-notice a {
  color: var(--green-700);
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gray-900);
  border-top: 2px solid var(--green-700);
  padding: 48px 0 24px;
  color: var(--gray-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand__desc {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.footer-col__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col__links a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.15s;
}

.footer-col__links a:hover { color: var(--green-400); }

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-600);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom__rgd {
  font-size: 12px;
  color: var(--gray-600);
  max-width: 540px;
  line-height: 1.5;
}

/* ============================================================
   EXPIRED TIP OVERLAY
   ============================================================ */
.tip-expired {
  position: relative;
}

.tip-expired::after {
  content: 'Tip Expired';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  border-radius: var(--radius-xl);
}

/* ============================================================
   UTILITIES & STATES
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.text-center { text-align: center; }
.text-green   { color: var(--green-600); }
.text-gold    { color: var(--gold-500); }
.text-muted   { color: var(--gray-400); }

.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }

.no-tips {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-300);
}

.no-tips__icon { font-size: 3rem; margin-bottom: 16px; }
.no-tips__text { font-size: 15px; }

/* ============================================================
   ADMIN / ACF OVERRIDES (front-end safe)
   ============================================================ */
.acf-field .acf-label label { font-weight: 600 !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .match-layout {
    grid-template-columns: 1fr;
  }
  .match-sidebar {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .primary-nav { display: none; }
  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--gray-900);
    padding: 12px;
    border-bottom: 1px solid var(--gray-700);
    gap: 2px;
    z-index: 99;
  }
  .nav-hamburger { display: block; }
  .tips-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; width: 100%; }
  .stat-block { flex: 1; min-width: 140px; }
  .match-hero__fixture { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .home-hero { padding: 28px 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
