:root{
  --text:#111;
  --muted:#666;
  --border:#e8e8e8;
  --bg:#ffffff;
  --soft:#f7f7f7;
  --brand:#0aa36c;
  --dark:#111;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
}
a{ color:inherit; text-decoration:none; }
.container{ max-width:1180px; margin:0 auto; padding:0 18px; }

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:14px;
}

.topbar{
  background:#fff;
  border-bottom:1px solid var(--border);
}
.topbar__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 18px;
}
.brand{
  font-weight:900;
  font-size:22px;
  letter-spacing:.3px;
  text-transform:lowercase;
}
.nav{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  color:#0b5;
  font-weight:600;
}
.nav a{ color:#0b5; }
.topbar__right{ display:flex; gap:12px; }
.toplink{ color:#222; font-weight:600; }

.subnav{
  background:var(--brand);
  color:#fff;
}
.subnav__row{
  display:flex;
  align-items:center;
  gap:14px;
  padding:10px 18px;
  overflow:auto;
  white-space:nowrap;
}
.pill{
  background:rgba(255,255,255,.18);
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  letter-spacing:.2px;
}
.dropdown{ opacity:.95; }

.page{ padding:18px 18px 30px; }

.grid{
  display:grid;
  grid-template-columns: 280px 1fr 320px;
  gap:18px;
  align-items:start;
}
@media (max-width: 1060px){
  .grid{ grid-template-columns:1fr; }
  .right{ order:3; }
  .left{ order:2; }
  .center{ order:1; }
}

.section-title{
  margin:0 0 10px 0;
  font-size:14px;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:#111;
}
.news-item{
  display:block;
  padding:10px 0;
  border-top:1px solid var(--border);
}
.news-item:first-of-type{ border-top:0; padding-top:0; }
.news-item__title{ font-weight:700; line-height:1.25; }
.news-item__meta{ color:var(--muted); font-size:12px; margin-top:4px; }

.hero{
  background:linear-gradient(90deg, #ffe4e4, #ffd8e6);
  border:1px solid #ffd0d8;
}
.hero__badge{
  display:inline-block;
  background:rgba(10,163,108,.15);
  color:#0a6a46;
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
}
.hero h1{ margin:10px 0 8px; font-size:40px; line-height:1.05; }
.hero p{ margin:0 0 14px; color:#222; max-width:760px; }

.hero__cta{ display:flex; flex-wrap:wrap; gap:10px; margin:10px 0 8px; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:700;
}
.btn--dark{ background:#111; color:#fff; border-color:#111; }
.btn--brand{ background:var(--brand); color:#fff; border-color:var(--brand); }

.hero__mini{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:12px;
}
@media (max-width: 700px){
  .hero h1{ font-size:30px; }
  .hero__mini{ grid-template-columns:1fr; }
}

.mini{ padding:12px; }
.mini__title{ font-weight:900; }
.mini__muted{ color:var(--muted); font-size:13px; }

.section-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  margin:18px 0 10px;
}
.section-head h2{ margin:0; font-size:18px; }
.muted{ color:var(--muted); }

.match-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 900px){
  .match-grid{ grid-template-columns:1fr; }
}
.match{ display:block; }
.match__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.tag{
  font-size:12px;
  font-weight:900;
  padding:4px 8px;
  border-radius:999px;
  background:var(--soft);
  border:1px solid var(--border);
}
.match__teams{ font-weight:900; line-height:1.5; }
.match__note{ margin-top:8px; color:var(--muted); font-size:13px; }
.match__bottom{ display:flex; gap:8px; margin-top:10px; flex-wrap:wrap; }
.pill2{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--soft);
  border:1px solid var(--border);
}

.ad__label{
  font-size:12px;
  font-weight:900;
  letter-spacing:.6px;
  color:var(--muted);
}
.ad__box{
  height:140px;
  border-radius:10px;
  border:1px dashed #cfcfcf;
  background:#fafafa;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:10px 0;
  color:#777;
  font-weight:800;
}
.ad__title{ font-weight:900; margin-bottom:4px; }
.ad__muted{ color:var(--muted); font-size:13px; }

.footer{
  margin-top:22px;
  border-top:1px solid var(--border);
  background:#f3f3f3;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap:14px;
  padding:18px;
}
@media (max-width: 900px){
  .footer__grid{ grid-template-columns:1fr 1fr; }
}
.footer__brand{ font-weight:1000; font-size:20px; }
.footer__title{ font-weight:900; margin-bottom:6px; }
.footer a{ color:#222; }
.footer__muted{ color:var(--muted); margin-top:6px; }
.footer__bottom{
  padding:12px 18px;
  color:var(--muted);
  border-top:1px solid #ddd;
}