:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: #0f172a;
  --text: #e5eefb;
  --muted: #94a3b8;
  --line: rgba(255,255,255,0.1);
  --brand: #34d399;
  --brand-dark: #10b981;
  --accent: #60a5fa;
  --warn: #f59e0b;
  --max: 1200px;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(16,185,129,0.18), transparent 25%),
    radial-gradient(circle at left, rgba(96,165,250,0.14), transparent 22%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(2,6,23,0.88);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand-kicker {
  color: #9ae6b4;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  font-weight: 700;
}
.brand-title { font-size: 1.55rem; font-weight: 800; }
.nav-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.nav-links a {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.09); }
.section { padding: 4rem 0; }
.hero-grid, .grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
.hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .panel {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card { padding: 1.5rem; }
.panel { padding: 2rem; }
.hero-title {
  margin: 1rem 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 900;
}
.lead { color: var(--muted); font-size: 1.08rem; line-height: 1.8; max-width: 46rem; }
.kicker-pill, .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(52,211,153,0.22);
  background: rgba(52,211,153,0.1);
  color: #d1fae5;
  font-size: 0.9rem;
}
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 18px;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn-primary { background: var(--brand); color: #052e28; }
.btn-secondary { background: rgba(255,255,255,0.05); color: #fff; border-color: var(--line); }
.btn:hover { transform: translateY(-1px); }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; margin-top: 1.5rem; }
.stat { padding: 1.15rem; border-radius: 22px; border: 1px solid var(--line); background: rgba(255,255,255,0.04); }
.stat strong { display: block; font-size: 2rem; font-weight: 900; }
.stat span { color: var(--muted); font-size: 0.92rem; }
.avatar-row { display: flex; align-items: center; gap: 1rem; }
.avatar {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.avatar.small { width: 48px; height: 48px; }
.avatar svg { width: 68px; height: 68px; }
.avatar.small svg { width: 38px; height: 38px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.25em; color: #86efac; font-size: 0.76rem; font-weight: 700; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; margin: 0.5rem 0 0.8rem; font-weight: 900; letter-spacing: -0.03em; }
.muted { color: var(--muted); }
.tile-list, .stack { display: grid; gap: 1rem; }
.badges, .tags { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.badge, .tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  color: #dbeafe;
}
.match-card, .post-card, .team-card, .group-card { height: 100%; }
.match-head, .split-row { display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.match-title { font-size: 1.5rem; font-weight: 800; margin: 0.6rem 0 0.25rem; }
.subtle { color: var(--muted); font-size: 0.94rem; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 0.85rem 0.75rem; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--muted); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.15em; }
tr:last-child td { border-bottom: 0; }
.list-links { display: grid; gap: 0.8rem; }
.list-links a {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}
.list-links a:hover { background: rgba(255,255,255,0.08); }
.meta { display: flex; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-size: 0.9rem; }
.callout {
  border: 1px solid rgba(52,211,153,0.2);
  background: rgba(52,211,153,0.09);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.warning {
  border: 1px solid rgba(245,158,11,0.2);
  background: rgba(245,158,11,0.11);
  color: #fef3c7;
}
.footer { border-top: 1px solid var(--line); padding: 2rem 0 3rem; color: var(--muted); }
.breadcrumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; font-size: 0.92rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumbs a { color: #cbd5e1; }
.content p { color: var(--muted); line-height: 1.9; }
.content h3 { margin-top: 2rem; font-size: 1.4rem; }
.small-note { font-size: 0.85rem; color: var(--muted); }
.notice-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.5rem; }
@media (max-width: 1024px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .notice-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .notice-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .header-inner { justify-content: center; }
  .panel, .card { padding: 1.2rem; }
  .hero-title { font-size: 2.7rem; }
}


.team-card,.group-card{display:block;text-decoration:none;color:inherit}
.squad-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem}
.squad-slot{background:rgba(15,23,42,.7);border:1px solid rgba(255,255,255,.08);border-radius:1rem;padding:.9rem 1rem;color:#cbd5e1;font-size:.95rem}
.meta-list{margin-top:1rem;display:grid;gap:.75rem}
@media (min-width: 900px){.squad-grid{grid-template-columns:repeat(3,minmax(0,1fr));}}


.fixtures-wrapper{display:grid;gap:1.25rem}
.fixture-day{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:1.75rem;padding:1.25rem}
.fixture-day-head{display:flex;justify-content:space-between;gap:1rem;align-items:flex-start;margin-bottom:1rem;padding-bottom:1rem;border-bottom:1px solid rgba(255,255,255,.08)}
.fixture-day-head h2{margin:.4rem 0 0;font-size:1.7rem}
.fixture-date-kicker{font-size:.75rem;letter-spacing:.22em;text-transform:uppercase;color:#6ee7b7}
.fixture-date-iso{font-size:.85rem;color:#94a3b8}
.fixture-list{display:grid;gap:.75rem}
.fixture-row{display:grid;grid-template-columns:90px 1fr;gap:1rem;align-items:flex-start;background:rgba(15,23,42,.72);border:1px solid rgba(255,255,255,.06);border-radius:1rem;padding:1rem}
.fixture-time{font-weight:700;color:#fff}
.fixture-title{font-weight:700;color:#fff}
.fixture-meta{font-size:.95rem;color:#94a3b8;margin-top:.25rem}
.knockout-card{background:rgba(15,23,42,.72);border:1px solid rgba(255,255,255,.06);border-radius:1.25rem;padding:1rem}
.knockout-card h3{margin:.45rem 0 .5rem}
.knockout-card p{margin:0;color:#cbd5e1;line-height:1.6}
@media (max-width: 720px){
  .fixture-row{grid-template-columns:1fr}
  .fixture-day-head{flex-direction:column}
}


.match-list{display:grid;gap:.75rem}
.match-row{display:block;background:rgba(15,23,42,.72);border:1px solid rgba(255,255,255,.06);border-radius:1rem;padding:1rem}
.match-title{font-weight:700;color:#fff}
.small-note{color:var(--muted);font-size:.95rem;line-height:1.6}
.back-link{display:inline-block;margin-bottom:1rem;color:#6ee7b7;font-weight:600}
.badge{display:inline-block}


.clickout-wrap{margin-top:1rem}
.clickout-btn{display:inline-flex;align-items:center;justify-content:center;border-radius:9999px;background:#34d399;color:#052e16;padding:.85rem 1.25rem;font-weight:700;text-decoration:none;box-shadow:0 10px 25px rgba(16,185,129,.2)}
.clickout-btn:hover{filter:brightness(1.05)}
.clickout-note{margin-top:.6rem;color:#94a3b8;font-size:.92rem;line-height:1.5}
.odds-cta-card{margin-top:1rem;background:rgba(16,185,129,.08);border:1px solid rgba(52,211,153,.25);border-radius:1rem;padding:1rem}


/* Mobile burger navigation */
.mobile-nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:9999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#fff;
  cursor:pointer;
}
.mobile-nav-toggle .burger-lines,
.mobile-nav-toggle .burger-lines::before,
.mobile-nav-toggle .burger-lines::after{
  display:block;
  width:18px;
  height:2px;
  background:#fff;
  border-radius:9999px;
  position:relative;
  content:"";
  transition:transform .2s ease, opacity .2s ease;
}
.mobile-nav-toggle .burger-lines::before{position:absolute; top:-6px; left:0;}
.mobile-nav-toggle .burger-lines::after{position:absolute; top:6px; left:0;}
.mobile-nav-toggle[aria-expanded="true"] .burger-lines{background:transparent;}
.mobile-nav-toggle[aria-expanded="true"] .burger-lines::before{transform:translateY(6px) rotate(45deg);}
.mobile-nav-toggle[aria-expanded="true"] .burger-lines::after{transform:translateY(-6px) rotate(-45deg);}
.mobile-nav-panel{
  display:none;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(2,6,23,.98);
}
.mobile-nav-panel.is-open{display:block;}
.mobile-nav-links{
  max-width:1280px;
  margin:0 auto;
  padding:1rem 1.5rem 1.25rem;
  display:grid;
  gap:.75rem;
}
.mobile-nav-links a{
  display:block;
  padding:.9rem 1rem;
  border-radius:1rem;
  text-decoration:none;
  color:#e2e8f0;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}
.mobile-nav-links a.active{
  color:#fff;
  border-color:rgba(52,211,153,.4);
  background:rgba(16,185,129,.12);
}
@media (max-width: 900px){
  .nav-links{display:none !important;}
  .mobile-nav-toggle{display:inline-flex;}
  .header-inner{gap:1rem; align-items:center;}
}
@media (min-width: 901px){
  .mobile-nav-panel{display:none !important;}
}


/* Enhanced mobile nav */
.mobile-nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(2,6,23,.68);
  backdrop-filter:blur(3px);
  z-index:35;
  display:none;
}
.mobile-nav-overlay.is-open{display:block;}
.mobile-nav-panel{
  position:relative;
  z-index:40;
}
.mobile-nav-links a{
  transition:background .2s ease,border-color .2s ease,color .2s ease,transform .2s ease;
}
.mobile-nav-links a:hover{
  transform:translateY(-1px);
}
.mobile-nav-close-row{
  max-width:1280px;
  margin:0 auto;
  padding:1rem 1.5rem 0;
  display:flex;
  justify-content:flex-end;
}
.mobile-nav-close{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:9999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#fff;
  cursor:pointer;
}
body.mobile-nav-open{
  overflow:hidden;
}
@media (min-width: 901px){
  .mobile-nav-overlay{display:none !important;}
  .mobile-nav-close-row{display:none !important;}
}


/* Mobile homepage + fixtures hierarchy improvements */
.hero-panel{
  background:linear-gradient(180deg, rgba(16,185,129,.10), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  border-radius:1.75rem;
  padding:1.5rem;
  box-shadow:0 20px 40px rgba(0,0,0,.22);
}
.hero-kpis{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:.75rem;
  margin-top:1.25rem;
}
.hero-kpi{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  border-radius:1rem;
  padding:1rem;
}
.hero-kpi strong{
  display:block;
  font-size:1.55rem;
  color:#fff;
}
.hero-kpi span{
  display:block;
  margin-top:.25rem;
  color:#cbd5e1;
  font-size:.92rem;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top:1.15rem;
}
.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:9999px;
  padding:.9rem 1.25rem;
  text-decoration:none;
  font-weight:700;
}
.hero-btn.primary{
  background:#34d399;
  color:#052e16;
}
.hero-btn.secondary{
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  background:rgba(255,255,255,.05);
}
.compact-lead{
  font-size:1.03rem;
  line-height:1.7;
}
.fixtures-hero{
  margin-bottom:1.25rem;
}
.fixtures-highlights{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.75rem;
  margin-top:1rem;
}
.fixtures-highlight{
  border-radius:1rem;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  padding:1rem;
}
.fixtures-highlight strong{
  display:block;
  font-size:1.2rem;
  color:#fff;
}
.fixtures-highlight span{
  display:block;
  margin-top:.3rem;
  color:#cbd5e1;
  font-size:.92rem;
}
.fixtures-filter-note{
  margin-top:1rem;
  padding:1rem;
  border-radius:1rem;
  background:rgba(16,185,129,.08);
  border:1px solid rgba(52,211,153,.2);
  color:#d1fae5;
}
@media (max-width: 900px){
  .hero-panel{padding:1.15rem;border-radius:1.35rem}
  .hero-panel h1,
  .hero-panel .section-title{font-size:2rem !important; line-height:1.15;}
  .compact-lead{font-size:.98rem; line-height:1.6}
  .hero-kpis{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hero-kpi strong{font-size:1.3rem}
  .hero-actions{flex-direction:column}
  .hero-btn{width:100%}
  .fixtures-highlights{grid-template-columns:1fr}
  .fixture-day{padding:1rem;border-radius:1.15rem}
  .fixture-row{padding:.9rem}
  .fixture-title{font-size:1rem;line-height:1.35}
  .fixture-meta{font-size:.87rem}
}


/* Group + team mobile improvements and semantic tables */
.responsive-table-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border:1px solid rgba(255,255,255,.08);
  border-radius:1rem;
  background:rgba(255,255,255,.03);
}
.wct-table{
  width:100%;
  border-collapse:collapse;
  min-width:620px;
}
.wct-table th,
.wct-table td{
  padding:.9rem .85rem;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
  vertical-align:top;
}
.wct-table thead th{
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:#94a3b8;
  background:rgba(15,23,42,.72);
}
.wct-table tbody tr:last-child td{
  border-bottom:none;
}
.wct-table td{
  color:#e2e8f0;
}
.wct-table .num{
  text-align:center;
  width:56px;
}
.team-grid-enhanced{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}
.info-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:1.25rem;
  padding:1rem;
}
.info-card h3{
  margin:0 0 .8rem;
}
.team-hero-card,
.group-hero-card{
  background:linear-gradient(180deg, rgba(16,185,129,.10), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  border-radius:1.5rem;
  padding:1.25rem;
  margin-bottom:1.25rem;
}
.stat-pills{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin-top:.9rem;
}
.stat-pill{
  padding:.6rem .85rem;
  border-radius:9999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#e2e8f0;
  font-size:.92rem;
}
.squad-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.75rem;
}
.squad-slot{
  background:rgba(15,23,42,.72);
  border:1px solid rgba(255,255,255,.08);
  border-radius:1rem;
  padding:.9rem 1rem;
  color:#cbd5e1;
  font-size:.95rem;
}
.match-list-table{
  margin-top:1rem;
}
@media (max-width: 900px){
  .team-grid-enhanced{
    grid-template-columns:1fr;
  }
  .squad-grid{
    grid-template-columns:1fr 1fr;
  }
  .group-hero-card,
  .team-hero-card{
    padding:1rem;
    border-radius:1.2rem;
  }
  .group-hero-card h1,
  .team-hero-card h1{
    font-size:2rem;
    line-height:1.15;
  }
}
@media (max-width: 640px){
  .squad-grid{
    grid-template-columns:1fr;
  }
  .responsive-table-wrap{
    border-radius:.9rem;
  }
  .wct-table th,
  .wct-table td{
    padding:.8rem .7rem;
  }
}


/* Blog post premium mobile layout */
.post-hero-card{
  background:linear-gradient(180deg, rgba(16,185,129,.10), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  border-radius:1.5rem;
  padding:1.25rem;
  margin-bottom:1.25rem;
}
.post-meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem 1rem;
  align-items:center;
  margin-top:1rem;
  color:#cbd5e1;
  font-size:.95rem;
}
.post-meta-chip{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.55rem .8rem;
  border-radius:9999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.post-layout{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);
  gap:1rem;
}
.post-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:1.25rem;
  padding:1.1rem;
}
.post-prose p{
  margin:0 0 1rem;
  color:#dbe4ef;
  line-height:1.8;
}
.post-prose p:last-child{
  margin-bottom:0;
}
.pick-list{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
  margin-top:1rem;
}
.pick-pill{
  display:inline-flex;
  align-items:center;
  padding:.7rem .95rem;
  border-radius:9999px;
  background:rgba(16,185,129,.12);
  border:1px solid rgba(52,211,153,.28);
  color:#ecfdf5;
  font-weight:700;
}
.post-cta-card{
  background:rgba(16,185,129,.08);
  border:1px solid rgba(52,211,153,.24);
  border-radius:1.25rem;
  padding:1rem;
}
.post-divider{
  margin:1rem 0;
  border-top:1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px){
  .post-layout{
    grid-template-columns:1fr;
  }
  .post-hero-card{
    padding:1rem;
    border-radius:1.2rem;
  }
  .post-hero-card h1{
    font-size:2rem !important;
    line-height:1.15;
  }
  .post-card{
    padding:1rem;
    border-radius:1.05rem;
  }
  .post-meta-row{
    font-size:.9rem;
  }
}


/* Brand consistency upgrade */
.brand-card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  margin-top:1.25rem;
}
.brand-card{
  display:block;
  text-decoration:none;
  color:inherit;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  border-radius:1.4rem;
  padding:1.15rem;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}
.brand-card:hover{
  transform:translateY(-2px);
  border-color:rgba(52,211,153,.35);
  background:linear-gradient(180deg, rgba(16,185,129,.08), rgba(255,255,255,.04));
}
.brand-card h3{
  margin:.55rem 0 .55rem;
  font-size:1.35rem;
  line-height:1.25;
  color:#fff;
}
.brand-card p{
  margin:0;
  color:#cbd5e1;
  line-height:1.7;
}
.brand-card-meta{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
  margin-top:.9rem;
}
.brand-chip{
  display:inline-flex;
  align-items:center;
  padding:.45rem .7rem;
  border-radius:9999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#e2e8f0;
  font-size:.82rem;
}
.section-shell{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  border-radius:1.5rem;
  padding:1.2rem;
}
.section-shell + .section-shell{
  margin-top:1rem;
}
.brand-highlight-row{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:.85rem;
  margin-top:1rem;
}
.brand-highlight{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:1rem;
  padding:1rem;
}
.brand-highlight strong{
  display:block;
  color:#fff;
  font-size:1.25rem;
}
.brand-highlight span{
  display:block;
  margin-top:.25rem;
  color:#cbd5e1;
  font-size:.92rem;
}
@media (max-width: 1000px){
  .brand-card-grid{grid-template-columns:1fr 1fr;}
  .brand-highlight-row{grid-template-columns:1fr 1fr;}
}
@media (max-width: 640px){
  .brand-card-grid{grid-template-columns:1fr;}
  .brand-highlight-row{grid-template-columns:1fr 1fr;}
  .brand-card{padding:1rem;border-radius:1.15rem;}
  .section-shell{padding:1rem;border-radius:1.2rem;}
}


/* Final branding polish */
.brand-lockup{
  display:flex;
  align-items:center;
  gap:.85rem;
}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#34d399,#3b82f6);
  color:#052e16;
  font-weight:900;
  letter-spacing:.02em;
  box-shadow:0 12px 24px rgba(16,185,129,.2);
}
.brand-text{
  display:flex;
  flex-direction:column;
}
.brand-kicker{
  color:#6ee7b7;
  text-transform:uppercase;
  letter-spacing:.28em;
  font-size:.68rem;
  font-weight:700;
}
.brand-title{
  color:#fff;
  font-size:1.25rem;
  font-weight:900;
  letter-spacing:-.02em;
}
.site-header{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter:blur(10px);
  background:rgba(2,6,23,.88);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.nav-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.65rem .9rem;
  border-radius:9999px;
  text-decoration:none;
  color:#cbd5e1;
  border:1px solid transparent;
}
.nav-links a:hover,
.nav-links a.active{
  color:#fff;
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.08);
}
.match-predictions-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:.85rem;
  border-radius:9999px;
  padding:.75rem 1rem;
  text-decoration:none;
  font-weight:700;
  background:#34d399;
  color:#052e16;
}
.team-link{
  color:#fff;
  text-decoration:none;
  border-bottom:1px dotted rgba(255,255,255,.3);
}
.team-link:hover{
  color:#6ee7b7;
  border-bottom-color:#6ee7b7;
}
.prediction-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:1.25rem;
  padding:1rem;
}
.fixture-actions{
  margin-top:.75rem;
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
}
.author-long-bio{
  color:#dbe4ef;
  line-height:1.85;
}
@media (max-width:640px){
  .brand-mark{
    width:38px;
    height:38px;
    border-radius:10px;
  }
  .brand-title{
    font-size:1.08rem;
  }
}


/* Favicon + brand polish */
.brand-mark{
  overflow:hidden;
  background:linear-gradient(135deg,#2a1d12,#6b4423);
  border:1px solid rgba(255,255,255,.10);
}
.brand-mark img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.brand-title{
  font-size:1.28rem;
}
.brand-subtitle{
  color:#cbd5e1;
  font-size:.8rem;
  margin-top:.08rem;
}
@media (max-width: 640px){
  .brand-subtitle{display:none;}
}


/* Full light theme rebuild */
html, body{
  background:#ffffff;
  color:#111111;
}
body{
  background:#ffffff !important;
  color:#111111 !important;
}
a{
  color:#e85d04;
}
a:hover{
  color:#c94c00;
}
.site-header{
  background:rgba(255,255,255,.96) !important;
  border-bottom:1px solid #e5e7eb !important;
  backdrop-filter:blur(10px);
}
.brand-kicker{
  color:#e85d04 !important;
}
.brand-title,
h1,h2,h3,h4,
.section-title,
.match-title,
.fixture-title{
  color:#111111 !important;
}
.brand-subtitle,
.small-note,
.fixture-meta,
.post-meta-row,
.post-meta-chip,
.clickout-note,
.lead,
.compact-lead,
p,
li,
td,
th{
  color:#4b5563;
}
.nav-links a,
.mobile-nav-links a{
  color:#111111 !important;
}
.nav-links a:hover,
.nav-links a.active,
.mobile-nav-links a:hover,
.mobile-nav-links a.active{
  color:#e85d04 !important;
  background:#fff7ed !important;
  border-color:#fdba74 !important;
}
.mobile-nav-panel{
  background:#ffffff !important;
  border-top:1px solid #e5e7eb !important;
}
.mobile-nav-overlay{
  background:rgba(17,24,39,.2) !important;
}
.mobile-nav-close,
.mobile-nav-toggle{
  background:#ffffff !important;
  border:1px solid #e5e7eb !important;
  color:#111111 !important;
}
.mobile-nav-toggle .burger-lines,
.mobile-nav-toggle .burger-lines::before,
.mobile-nav-toggle .burger-lines::after{
  background:#111111 !important;
}
.panel,
.info-card,
.post-card,
.brand-card,
.section-shell,
.hero-panel,
.group-hero-card,
.team-hero-card,
.post-hero-card,
.knockout-card,
.fixture-day,
.brand-highlight,
.fixtures-highlight,
.hero-kpi,
.prediction-card,
.odds-cta-card,
.post-cta-card{
  background:#fafafa !important;
  border:1px solid #e5e7eb !important;
  box-shadow:none !important;
}
.hero-panel,
.group-hero-card,
.team-hero-card,
.post-hero-card{
  background:linear-gradient(180deg,#fff7ed,#ffffff) !important;
}
.eyebrow{
  color:#e85d04 !important;
}
.brand-mark{
  background:#fff7ed !important;
  border:1px solid #fdba74 !important;
  color:#111111 !important;
}
.hero-btn.primary,
.clickout-btn,
.match-predictions-btn{
  background:#e85d04 !important;
  color:#ffffff !important;
  border:none !important;
}
.hero-btn.primary:hover,
.clickout-btn:hover,
.match-predictions-btn:hover{
  background:#c94c00 !important;
  color:#ffffff !important;
}
.hero-btn.secondary{
  background:#ffffff !important;
  color:#111111 !important;
  border:1px solid #e5e7eb !important;
}
.badge,
.brand-chip,
.post-meta-chip,
.stat-pill{
  background:#fff7ed !important;
  border:1px solid #fdba74 !important;
  color:#9a3412 !important;
}
.pick-pill{
  background:#fff7ed !important;
  border:1px solid #fdba74 !important;
  color:#9a3412 !important;
}
.responsive-table-wrap{
  background:#ffffff !important;
  border:1px solid #e5e7eb !important;
}
.wct-table{
  background:#ffffff !important;
}
.wct-table thead th{
  background:#f9fafb !important;
  color:#111111 !important;
  border-bottom:1px solid #e5e7eb !important;
}
.wct-table td,
.wct-table th{
  border-bottom:1px solid #e5e7eb !important;
}
.wct-table tbody th,
.wct-table tbody td{
  color:#374151 !important;
}
.fixture-row{
  background:#ffffff !important;
  border:1px solid #e5e7eb !important;
}
.footer{
  border-top:1px solid #e5e7eb !important;
  background:#ffffff !important;
  color:#6b7280 !important;
}
.post-divider{
  border-top:1px solid #e5e7eb !important;
}
.clickout-wrap{
  display:block !important;
  margin-top:1rem !important;
}
.clickout-btn{
  display:inline-flex !important;
  min-width:220px;
  text-align:center;
}
.fixture-actions{
  display:flex !important;
}
.match-list a,
.match-row{
  color:inherit;
}
.team-link{
  color:#e85d04 !important;
  border-bottom:1px dotted #fdba74 !important;
}
.team-link:hover{
  color:#c94c00 !important;
  border-bottom-color:#c94c00 !important;
}


/* FINAL LIGHT THEME FORCE OVERRIDES */
html{background:#ffffff !important;}
body{
  background:#ffffff !important;
  color:#111111 !important;
}
main, section, article, aside, div{
  color:inherit;
}
.site-header,
.mobile-nav-panel,
.footer{
  background:#ffffff !important;
}
.site-header{
  border-bottom:1px solid #e5e7eb !important;
}
.brand-kicker,
.eyebrow,
a,
.team-link{
  color:#c55a11 !important;
}
a:hover,
.team-link:hover{
  color:#9a3412 !important;
}
.brand-title,
.section-title,
h1,h2,h3,h4,h5,h6,
.fixture-title,
.match-title{
  color:#111111 !important;
}
p, li, td, th, .lead, .compact-lead, .small-note, .fixture-meta, .clickout-note, .brand-subtitle{
  color:#4b5563 !important;
}
.panel,
.info-card,
.post-card,
.brand-card,
.section-shell,
.hero-panel,
.group-hero-card,
.team-hero-card,
.post-hero-card,
.knockout-card,
.fixture-day,
.brand-highlight,
.fixtures-highlight,
.hero-kpi,
.prediction-card,
.odds-cta-card,
.post-cta-card,
.fixture-row,
.responsive-table-wrap{
  background:#fafafa !important;
  border:1px solid #e5e7eb !important;
  box-shadow:none !important;
}
.hero-panel,
.group-hero-card,
.team-hero-card,
.post-hero-card{
  background:linear-gradient(180deg,#fff7ed,#ffffff) !important;
}
.nav-links a,
.mobile-nav-links a{
  color:#111111 !important;
  background:transparent !important;
  border:1px solid transparent !important;
}
.nav-links a:hover,
.nav-links a.active,
.mobile-nav-links a:hover,
.mobile-nav-links a.active{
  color:#c55a11 !important;
  background:#fff7ed !important;
  border-color:#fdba74 !important;
}
.brand-mark{
  background:#fff7ed !important;
  border:1px solid #fdba74 !important;
  color:#111111 !important;
}
.hero-btn.primary,
.clickout-btn,
.match-predictions-btn{
  background:#c55a11 !important;
  color:#ffffff !important;
  border:none !important;
}
.hero-btn.primary:hover,
.clickout-btn:hover,
.match-predictions-btn:hover{
  background:#9a3412 !important;
  color:#ffffff !important;
}
.hero-btn.secondary{
  background:#ffffff !important;
  color:#111111 !important;
  border:1px solid #e5e7eb !important;
}
.badge,
.brand-chip,
.post-meta-chip,
.stat-pill,
.pick-pill{
  background:#fff7ed !important;
  border:1px solid #fdba74 !important;
  color:#9a3412 !important;
}
.wct-table{
  background:#ffffff !important;
}
.wct-table thead th{
  background:#f9fafb !important;
  color:#111111 !important;
}
.wct-table td,
.wct-table th{
  border-bottom:1px solid #e5e7eb !important;
}
.wct-table tbody td,
.wct-table tbody th{
  color:#374151 !important;
}
.mobile-nav-overlay{
  background:rgba(17,24,39,.18) !important;
}


/* CRITICAL AFFILIATE CTA BUTTONS */
.affiliate-cta,
.affiliate-inline-cta{
  display:block !important;
  margin-top:1rem !important;
}
.affiliate-box{
  background:#fff7ed !important;
  border:2px solid #fdba74 !important;
  border-radius:16px !important;
  padding:16px !important;
  margin-top:16px !important;
}
.affiliate-box h3{
  margin:0 0 8px !important;
  color:#111111 !important;
  font-size:1.15rem !important;
}
.affiliate-box p{
  margin:0 0 12px !important;
  color:#4b5563 !important;
}
.affiliate-btn,
a.affiliate-btn,
.clickout-btn,
a.clickout-btn,
.match-predictions-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:#c55a11 !important;
  color:#ffffff !important;
  padding:14px 18px !important;
  border-radius:9999px !important;
  font-weight:800 !important;
  text-decoration:none !important;
  min-width:240px !important;
  border:none !important;
  box-shadow:0 6px 16px rgba(197,90,17,.22) !important;
}
.affiliate-btn:hover,
a.affiliate-btn:hover,
.clickout-btn:hover,
a.clickout-btn:hover,
.match-predictions-btn:hover{
  background:#9a3412 !important;
  color:#ffffff !important;
}
.affiliate-note{
  margin-top:10px !important;
  font-size:.9rem !important;
  color:#6b7280 !important;
  line-height:1.5 !important;
}


/* =========================================
   GLOBAL REFINEMENT OVERRIDES
========================================= */
body,
p,
li,
td,
th,
.small-note,
.fixture-meta,
.post-meta-row,
.post-meta-chip,
.clickout-note,
.lead,
.compact-lead,
.brand-subtitle,
.home-lead,
.home-shell-copy,
.home-card p,
.home-highlight span,
.home-kpi span,
.brand-card p,
.brand-highlight span,
.post-prose p,
.author-long-bio,
.content p,
.subtle,
.meta,
.wct-table tbody td,
.wct-table tbody th {
  color: #111111 !important;
}

.card,
.panel,
.info-card,
.post-card,
.brand-card,
.group-card,
.team-card,
.section-shell,
.hero-panel,
.group-hero-card,
.team-hero-card,
.post-hero-card,
.knockout-card,
.fixture-day,
.brand-highlight,
.fixtures-highlight,
.hero-kpi,
.prediction-card,
.odds-cta-card,
.post-cta-card,
.affiliate-box,
.home-shell,
.home-card,
.home-highlight,
.home-kpi,
.home-affiliate,
.home-footer-panel {
  background: linear-gradient(180deg, #fff7ed, #ffffff) !important;
  border: 1px solid #f3d2b8 !important;
  border-radius: 24px !important;
  box-shadow: none !important;
}

.home-card,
.brand-card,
.group-card,
.team-card,
.post-card,
.info-card,
.prediction-card,
.knockout-card,
.fixture-day,
.brand-highlight,
.fixtures-highlight,
.hero-kpi,
.home-highlight,
.home-kpi {
  padding: 18px !important;
}

.btn,
.hero-btn,
.hero-btn.primary,
.hero-btn.secondary,
.match-predictions-btn,
.home-btn,
.home-btn.primary,
.home-btn.secondary,
.btn-primary,
.btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.65rem 0.95rem !important;
  border-radius: 999px !important;
  background: #fff7ed !important;
  border: 1px solid #fdba74 !important;
  color: #9a3412 !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  min-width: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.btn:hover,
.hero-btn:hover,
.match-predictions-btn:hover,
.home-btn:hover,
.btn-primary:hover,
.btn-secondary:hover {
  background: #ffedd5 !important;
  border-color: #fb923c !important;
  color: #7c2d12 !important;
}

.badge,
.brand-chip,
.post-meta-chip,
.stat-pill,
.pick-pill,
.pill,
.kicker-pill,
.home-chip {
  background: #fff7ed !important;
  border: 1px solid #fdba74 !important;
  color: #9a3412 !important;
}

.clickout-wrap,
.affiliate-cta,
.affiliate-inline-cta,
.home-affiliate {
  display: block !important;
  margin-top: 1rem !important;
}

.affiliate-box,
.home-affiliate {
  background: rgba(232, 93, 4, 0.08) !important;
  border: 1px solid rgba(232, 93, 4, 0.28) !important;
  border-radius: 16px !important;
  padding: 16px !important;
}

.clickout-btn,
.affiliate-btn,
.home-affiliate .cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 9999px !important;
  background: #e85d04 !important;
  color: #ffffff !important;
  padding: .85rem 1.25rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 10px 25px rgba(232, 93, 4, 0.18) !important;
  min-width: 220px !important;
}

.clickout-btn:hover,
.affiliate-btn:hover,
.home-affiliate .cta:hover {
  background: #c94c00 !important;
  color: #ffffff !important;
  filter: none !important;
}

.clickout-note,
.affiliate-note,
.home-affiliate .note {
  margin-top: .6rem !important;
  color: #111111 !important;
  font-size: .92rem !important;
  line-height: 1.5 !important;
}

.mobile-nav-links a,
.nav-links a,
.footer,
.footer * {
  color: #111111 !important;
}

.nav-links a.active,
.nav-links a:hover,
.mobile-nav-links a.active,
.mobile-nav-links a:hover {
  color: #9a3412 !important;
}

.responsive-table-wrap,
.wct-table,
table,
.fixture-row,
.match-row,
.list-links a {
  background: #ffffff !important;
}

.home-title,
.home-shell-title,
.home-card h3,
.home-affiliate h3 {
  color: #111111 !important;
}
/* Fixtures highlight final styling fix */
.fixtures-highlight,
.fixtures-highlight * {
  background: #fff3e8 !important;
  color: #000000 !important;
}

.fixtures-highlight {
  border: 1px solid #ffd2b8 !important;
  border-radius: 16px !important;
}

.fixtures-highlight strong,
.fixtures-highlight span,
.fixtures-highlight p,
.fixtures-highlight a {
  color: #000000 !important;
}
/* Fixtures filter note final fix */
.fixtures-filter-note,
.fixtures-filter-note * {
  background: #fff3e8 !important;
  color: #000000 !important;
}

.fixtures-filter-note {
  border: 1px solid #ffd2b8 !important;
  border-radius: 12px !important;
}
/* =========================================
   FINAL CLEANUP CSS
   Normalises legacy cards, notes, highlights,
   pills, muted text and CTA edge cases
========================================= */

/* Global readable text */
body,
p,
li,
td,
th,
small,
.small-note,
.subtle,
.meta,
.note,
.content p,
.content li,
.lead,
.compact-lead,
.fixture-meta,
.fixture-filter-note,
.fixtures-filter-note,
.fixtures-highlight,
.clickout-note,
.affiliate-note,
.post-meta-row,
.post-meta-chip,
.brand-subtitle,
.wct-table tbody td,
.wct-table tbody th {
  color: #000000 !important;
}

/* Internal links */
main a:not(.btn):not(.hero-btn):not(.match-predictions-btn):not(.clickout-btn):not(.affiliate-btn),
section a:not(.btn):not(.hero-btn):not(.match-predictions-btn):not(.clickout-btn):not(.affiliate-btn),
article a:not(.btn):not(.hero-btn):not(.match-predictions-btn):not(.clickout-btn):not(.affiliate-btn),
.panel a:not(.btn):not(.hero-btn):not(.match-predictions-btn):not(.clickout-btn):not(.affiliate-btn),
.card a:not(.btn):not(.hero-btn):not(.match-predictions-btn):not(.clickout-btn):not(.affiliate-btn) {
  color: #e85d04 !important;
  text-decoration: underline !important;
}

main a:not(.btn):not(.hero-btn):not(.match-predictions-btn):not(.clickout-btn):not(.affiliate-btn):hover,
section a:not(.btn):not(.hero-btn):not(.match-predictions-btn):not(.clickout-btn):not(.affiliate-btn):hover,
article a:not(.btn):not(.hero-btn):not(.match-predictions-btn):not(.clickout-btn):not(.affiliate-btn):hover,
.panel a:not(.btn):not(.hero-btn):not(.match-predictions-btn):not(.clickout-btn):not(.affiliate-btn):hover,
.card a:not(.btn):not(.hero-btn):not(.match-predictions-btn):not(.clickout-btn):not(.affiliate-btn):hover {
  color: #c94c00 !important;
}

/* Standardise all cards/panels/highlights to light grey */
.card,
.panel,
.info-card,
.post-card,
.brand-card,
.group-card,
.team-card,
.section-shell,
.hero-panel,
.group-hero-card,
.team-hero-card,
.post-hero-card,
.fixture-row,
.match-row,
.fixture-day,
.knockout-card,
.prediction-card,
.odds-cta-card,
.post-cta-card,
.brand-highlight,
.fixtures-highlight,
.hero-kpi,
.home-shell,
.home-card,
.home-highlight,
.home-kpi,
.home-footer-panel,
.callout,
.warning,
.alert,
.notice,
.success,
.stat {
  background: #f5f5f5 !important;
  color: #000000 !important;
  border: 1px solid #e5e5e5 !important;
  box-shadow: none !important;
}

/* Ensure text inside cards/highlights is black */
.card *,
.panel *,
.info-card *,
.post-card *,
.brand-card *,
.group-card *,
.team-card *,
.section-shell *,
.hero-panel *,
.group-hero-card *,
.team-hero-card *,
.post-hero-card *,
.fixture-row *,
.match-row *,
.fixture-day *,
.knockout-card *,
.prediction-card *,
.odds-cta-card *,
.post-cta-card *,
.brand-highlight *,
.fixtures-highlight *,
.hero-kpi *,
.home-shell *,
.home-card *,
.home-highlight *,
.home-kpi *,
.home-footer-panel *,
.callout *,
.warning *,
.alert *,
.notice *,
.success *,
.stat * {
  color: #000000 !important;
}

/* Specific fixes for fixtures highlight/filter note */
.fixtures-highlight,
.fixtures-filter-note,
.fixture-filter-note {
  background: #fff3e8 !important;
  color: #000000 !important;
  border: 1px solid #ffd2b8 !important;
  border-radius: 16px !important;
}

.fixtures-highlight *,
.fixtures-filter-note *,
.fixture-filter-note * {
  color: #000000 !important;
}

/* Badges / pills / chips */
.badge,
.pill,
.brand-chip,
.stat-pill,
.pick-pill,
.post-meta-chip,
.kicker-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #fff3e8 !important;
  border: 1px solid #ffd2b8 !important;
  color: #e85d04 !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}

.badge *,
.pill *,
.brand-chip *,
.stat-pill *,
.pick-pill *,
.post-meta-chip *,
.kicker-pill * {
  color: #e85d04 !important;
}

/* Internal buttons = light orange */
.btn,
.hero-btn,
.hero-btn.primary,
.hero-btn.secondary,
.match-predictions-btn,
.home-btn,
.btn-primary,
.btn-secondary {
  background: #fff3e8 !important;
  border: 1px solid #ffd2b8 !important;
  color: #e85d04 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.btn *,
.hero-btn *,
.match-predictions-btn *,
.home-btn *,
.btn-primary *,
.btn-secondary * {
  color: #e85d04 !important;
}

.btn:hover,
.hero-btn:hover,
.match-predictions-btn:hover,
.home-btn:hover,
.btn-primary:hover,
.btn-secondary:hover {
  background: #ffe6d3 !important;
  color: #c94c00 !important;
  border-color: #ffc4a0 !important;
}

/* External buttons = darker orange */
.clickout-btn,
.affiliate-btn,
.home-affiliate .cta {
  background: #e85d04 !important;
  border: none !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.clickout-btn *,
.affiliate-btn *,
.home-affiliate .cta * {
  color: #ffffff !important;
}

.clickout-btn:hover,
.affiliate-btn:hover,
.home-affiliate .cta:hover {
  background: #c94c00 !important;
  color: #ffffff !important;
}

/* External CTA wrappers */
.clickout-wrap,
.affiliate-box,
.affiliate-cta,
.affiliate-inline-cta,
.home-affiliate {
  background: #fff3e8 !important;
  border: 1px solid #ffd2b8 !important;
  color: #000000 !important;
}

.clickout-wrap *,
.affiliate-box *,
.affiliate-cta *,
.affiliate-inline-cta *,
.home-affiliate * {
  color: #000000 !important;
}

/* Keep nav readable */
.nav-links a,
.mobile-nav-links a,
.footer,
.footer * {
  color: #000000 !important;
}

.nav-links a.active,
.nav-links a:hover,
.mobile-nav-links a.active,
.mobile-nav-links a:hover {
  color: #e85d04 !important;
}

/* Tables stay white and readable */
table,
.wct-table,
.responsive-table-wrap {
  background: #ffffff !important;
  color: #000000 !important;
}

th,
td {
  color: #000000 !important;
  border-bottom: 1px solid #e5e5e5 !important;
}

/* Prevent any old white-on-colour utility leaking through */
.text-white,
.has-white-text,
.is-light-text {
  color: #000000 !important;
}
/* Fixture date kicker fix */
.fixture-date,
.fixture-date.kicker,
.date-kicker,
.fixture .kicker {
  color: #e85d04 !important;
}

/* In case it's nested */
.fixture-date *,
.fixture-date.kicker *,
.date-kicker *,
.fixture .kicker * {
  color: #e85d04 !important;
}