
:root{
  --fbg-bg:#0a0d12;
  --fbg-bg-soft:#121722;
  --fbg-card:#131a25;
  --fbg-card-2:#1a2230;
  --fbg-text:#f5f7fb;
  --fbg-muted:#9aa5b5;
  --fbg-border:rgba(255,255,255,0.08);
  --fbg-success:#3bd47f;
  --fbg-accent:#ff6a00;
  --fbg-secondary:#ffc14d;
  --fbg-radius:24px;
  --fbg-shadow:0 20px 60px rgba(0,0,0,.35);
  --fbg-width:1200px;
}

*,
*::before,
*::after{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;
  background:
    radial-gradient(circle at top right, rgba(255,106,0,.16), transparent 28%),
    radial-gradient(circle at left top, rgba(255,193,77,.08), transparent 24%),
    var(--fbg-bg);
  color:var(--fbg-text);
  line-height:1.6;
}

img{max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
.site-shell{min-height:100vh}
.container{width:min(var(--fbg-width), calc(100% - 32px)); margin-inline:auto}
.section{padding:40px 0}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid var(--fbg-border);
  border-radius:var(--fbg-radius);
  box-shadow:var(--fbg-shadow);
  backdrop-filter:blur(10px);
}
.eyebrow{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  color:var(--fbg-secondary);
  font-size:.82rem;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--fbg-accent), #ff8b3d);
  color:#fff;
  font-weight:700;
  border:none;
  transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 14px 28px rgba(255,106,0,.25);
}
.button:hover{transform:translateY(-1px)}
.button-outline{
  background:transparent;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:none;
}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(10,13,18,.78);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:82px;
  gap:18px;
}
.brand-wrap{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  font-size:1.15rem;
}
.brand-mark{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg, var(--fbg-accent), var(--fbg-secondary));
  color:#0d1117;
  font-weight:900;
}
.brand-tagline{
  font-size:.84rem;
  color:var(--fbg-muted);
}
.primary-nav .menu,
.footer-menu{
  list-style:none;
  display:flex;
  align-items:center;
  gap:16px;
  padding:0;
  margin:0;
}
.primary-nav a,
.footer-menu a{
  color:var(--fbg-muted);
}
.primary-nav a:hover,
.footer-menu a:hover{color:var(--fbg-text)}
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.hero{padding:54px 0 26px}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:stretch;
}
.hero h1{
  font-size:clamp(2.2rem, 5vw, 4.4rem);
  line-height:1.02;
  margin:18px 0 16px;
  letter-spacing:-.04em;
  max-width:12ch;
}
.hero-text{
  max-width:62ch;
  font-size:1.06rem;
  color:var(--fbg-muted);
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin:26px 0}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:30px;
}
.stat-card{
  padding:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
}
.stat-card strong{display:block;font-size:1.2rem}
.stat-card span{color:var(--fbg-muted);font-size:.92rem}
.hero-panel{padding:20px}
.panel-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:var(--fbg-muted);
  margin-bottom:12px;
}
.pulse-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--fbg-success);
  box-shadow:0 0 0 8px rgba(59,212,127,.12);
}
.ticker{
  display:grid;
  gap:12px;
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  margin-bottom:22px;
}
.section-head h2{
  margin:.5rem 0 0;
  font-size:clamp(1.6rem, 3vw, 2.3rem);
}
.filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.filter-button{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:var(--fbg-text);
  border-radius:999px;
  padding:10px 14px;
  cursor:pointer;
}
.filter-button.active{
  background:rgba(255,106,0,.14);
  border-color:rgba(255,106,0,.5);
}
.match-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}
.match-card{padding:20px}
.match-card.compact{padding:16px}
.match-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
  font-size:.84rem;
  color:var(--fbg-muted);
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,106,0,.12);
  border:1px solid rgba(255,106,0,.3);
  color:#ffb17b;
}
.tag-muted{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.08);
  color:var(--fbg-text);
}
.match-title{
  margin:0 0 14px;
  font-size:1.18rem;
  line-height:1.25;
}
.teams{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  padding:12px 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.teams strong{
  font-size:1.35rem;
  letter-spacing:-.04em;
}
.scoreline{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1.5rem;
}
.odds-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.odds-row span,
.odd-chip{
  min-width:72px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  text-align:center;
}
.match-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin-top:16px;
}
.mini-link{
  color:var(--fbg-secondary);
  font-weight:700;
}
.cards-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.cards-2{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:16px;
}
.feature-card,
.post-card,
.page-card{padding:22px}
.feature-icon{font-size:1.6rem}
.post-date,
.microcopy{
  color:var(--fbg-muted);
  font-size:.92rem;
}
.content-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:20px;
}
.post-card-full h1,
.page-card h1{margin-top:0}
.entry-content > *:first-child{margin-top:0}
.entry-content > *:last-child{margin-bottom:0}
.widget{padding:20px}
.widget-title{margin-top:0}
.archive-hero p,
.footer-text,
.footer-disclaimer{color:var(--fbg-muted)}
.single-topline{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.single-scoreboard{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:12px;
  align-items:center;
  padding:24px;
}
.team-block{
  display:grid;
  gap:8px;
  text-align:center;
}
.team-name{font-size:1.05rem;color:var(--fbg-muted)}
.team-score{
  font-size:clamp(3rem,8vw,5rem);
  font-weight:900;
  letter-spacing:-.08em;
}
.score-divider{
  font-size:2rem;
  color:var(--fbg-muted);
}
.meta-inline{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:14px;
  color:var(--fbg-muted);
}
.odds-stack{
  display:grid;
  gap:12px;
  margin-bottom:20px;
}
.match-action{width:100%}
.site-footer{
  padding:34px 0 24px;
  border-top:1px solid rgba(255,255,255,.06);
  margin-top:30px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:24px;
}
.footer-brand{
  font-weight:800;
  font-size:1.2rem;
  margin-bottom:10px;
}
.footer-bottom{
  margin-top:24px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.06);
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:var(--fbg-muted);
  font-size:.92rem;
}
.pagination{margin-top:22px}
.screen-reader-text{display:none}
@media (max-width: 1080px){
  .hero-grid,
  .cards-2,
  .content-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .match-grid,
  .cards-3{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .primary-nav{display:none}
}
@media (max-width: 720px){
  .match-grid,
  .cards-3,
  .stats-grid{
    grid-template-columns:1fr;
  }
  .header-inner{
    flex-wrap:wrap;
    padding:12px 0;
  }
  .header-actions{width:100%}
  .header-actions .button{flex:1}
  .section-head{
    align-items:flex-start;
    flex-direction:column;
  }
  .single-scoreboard{
    grid-template-columns:1fr;
  }
  .score-divider{display:none}
  .footer-bottom{
    flex-direction:column;
  }
}
