:root {
  --bg: #06100c;
  --bg-soft: #0b1812;
  --surface: #102019;
  --surface-2: #14271f;
  --text: #f4f7f5;
  --muted: #aebcb5;
  --line: rgba(255,255,255,.11);
  --red: #ef3340;
  --red-dark: #bd1724;
  --green: #26d06f;
  --green-soft: rgba(38,208,111,.13);
  --max: 1160px;
  --radius: 20px;
  --shadow: 0 22px 70px rgba(0,0,0,.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(38,208,111,.09), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(239,51,64,.10), transparent 25rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.68;
}
a { color: inherit; }
img, svg { max-width: 100%; }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
.topbar {
  padding: 8px 0;
  text-align: center;
  color: #d7e2dc;
  border-bottom: 1px solid var(--line);
  background: #09150f;
  font-size: .82rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6,16,12,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 850; letter-spacing: -.02em; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--red), #8b0e18);
  box-shadow: 0 9px 30px rgba(239,51,64,.22);
}
.brand small { display: block; color: var(--muted); font-size: .68rem; font-weight: 650; letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: .92rem; }
.nav-links a { text-decoration: none; color: #dfe8e3; }
.nav-links a:hover { color: var(--green); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 0 20px; border-radius: 999px;
  border: 1px solid transparent; text-decoration: none; font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 12px 35px rgba(239,51,64,.20); }
.btn-primary:hover { background: #ff4854; }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.035); color: #edf3ef; }
.btn-secondary:hover { border-color: rgba(38,208,111,.55); }
.mobile-cta { display: none; }
.breadcrumbs { padding-top: 26px; color: var(--muted); font-size: .84rem; }
.breadcrumbs a { text-decoration: none; }
.hero { padding: 38px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 54px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #b8f5d0; background: var(--green-soft); border: 1px solid rgba(38,208,111,.26); border-radius: 999px; padding: 7px 12px; font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
h1 { margin: 18px 0 18px; max-width: 850px; font-size: clamp(2.35rem, 5vw, 4.6rem); line-height: 1.02; letter-spacing: -.055em; }
.hero p { color: #c3cec8; font-size: 1.06rem; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 26px; color: #c6d2cb; font-size: .88rem; }
.trust-row span::before { content: "✓"; color: var(--green); margin-right: 7px; font-weight: 900; }
.hero-card {
  min-height: 410px; border: 1px solid var(--line); border-radius: 28px; overflow: hidden;
  background: linear-gradient(150deg, #11251c, #07110d 68%); box-shadow: var(--shadow); position: relative;
}
.pitch { position: absolute; inset: 34px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; overflow: hidden; }
.pitch::before { content: ""; position: absolute; inset: 12% 7%; border: 2px solid rgba(255,255,255,.12); border-radius: 12px; }
.pitch::after { content: ""; position: absolute; left: 50%; top: 12%; bottom: 12%; width: 2px; background: rgba(255,255,255,.12); }
.center-circle { position: absolute; left: 50%; top: 50%; width: 100px; height: 100px; border: 2px solid rgba(255,255,255,.12); border-radius: 50%; transform: translate(-50%,-50%); }
.score-card { position: absolute; left: 28px; right: 28px; bottom: 28px; padding: 18px; border-radius: 17px; background: rgba(3,9,6,.82); border: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.score-teams { display: flex; align-items: center; gap: 10px; font-weight: 850; }
.team-dot { width: 30px; height: 30px; border-radius: 10px; display: inline-grid; place-items: center; font-size: .72rem; background: var(--red); }
.team-dot.dark { background: #161616; border: 1px solid rgba(255,255,255,.2); }
.live-pill { font-size: .72rem; font-weight: 900; padding: 7px 10px; border-radius: 999px; color: #9ff3c1; background: var(--green-soft); border: 1px solid rgba(38,208,111,.28); }
.layout { display: grid; grid-template-columns: minmax(0,1fr) 310px; gap: 38px; align-items: start; padding-bottom: 72px; }
.article { min-width: 0; }
.article-card, .sidebar-card, .info-box, .cta-panel { border: 1px solid var(--line); background: rgba(15,31,24,.84); border-radius: var(--radius); }
.article-card { padding: clamp(24px, 4vw, 46px); box-shadow: var(--shadow); }
.article h2 { margin: 44px 0 14px; font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.15; letter-spacing: -.035em; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin: 28px 0 10px; font-size: 1.2rem; }
.article p, .article li { color: #c8d2cc; }
.article strong { color: #fff; }
.article ul, .article ol { padding-left: 21px; }
.article li { margin-bottom: 9px; }
.lead { color: #e0e8e3 !important; font-size: 1.08rem; }
.info-box { padding: 22px; margin: 28px 0; background: linear-gradient(145deg, rgba(38,208,111,.10), rgba(15,31,24,.78)); }
.info-box strong { display: block; color: #a9f2c4; margin-bottom: 6px; }
.check-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin: 24px 0; }
.check-card { padding: 18px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.check-card b { display: block; margin-bottom: 6px; color: #fff; }
.check-card span { color: var(--muted); font-size: .92rem; }
.sidebar { position: sticky; top: 100px; display: grid; gap: 16px; }
.sidebar-card { padding: 22px; }
.sidebar-card h3 { margin: 0 0 12px; font-size: 1rem; }
.sidebar-card a { display: block; padding: 9px 0; text-decoration: none; color: #c7d3cc; border-bottom: 1px solid rgba(255,255,255,.07); font-size: .91rem; }
.sidebar-card a:last-child { border-bottom: 0; }
.sidebar-card a:hover { color: var(--green); }
.sidebar-cta { background: linear-gradient(145deg, rgba(239,51,64,.14), rgba(15,31,24,.9)); }
.sidebar-cta p { color: var(--muted); font-size: .91rem; }
.sidebar-cta .btn { width: 100%; margin-top: 8px; }
.faq { margin-top: 28px; }
details { border-top: 1px solid var(--line); padding: 17px 0; }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; font-weight: 800; padding-right: 30px; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 2px; top: -2px; color: var(--green); font-size: 1.35rem; }
details[open] summary::after { content: "−"; }
details p { margin-bottom: 0; }
.cta-panel { margin-top: 40px; padding: clamp(24px,4vw,40px); background: linear-gradient(135deg, rgba(239,51,64,.16), rgba(38,208,111,.08)); }
.cta-panel h2 { margin: 0 0 10px; }
.cta-panel p { margin-top: 0; }
.site-footer { border-top: 1px solid var(--line); background: #050d09; padding: 44px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 36px; }
.footer-grid p, .footer-grid a { color: #9fb0a7; font-size: .88rem; }
.footer-grid a { display: block; margin: 7px 0; text-decoration: none; }
.footer-grid h3 { font-size: .92rem; }
.footer-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); color: #84958c; font-size: .8rem; display: flex; justify-content: space-between; gap: 20px; }
.updated { color: #8fa198; font-size: .82rem; margin-top: 14px; }
@media (max-width: 920px) {
  .nav-links { display: none; }
  .mobile-cta { display: inline-flex; }
  .hero-grid, .layout, .footer-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 330px; }
  .sidebar { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .container { width: min(100% - 24px, var(--max)); }
  .brand span:last-child { display: none; }
  .hero { padding-top: 26px; }
  h1 { font-size: 2.45rem; }
  .hero-card { min-height: 290px; }
  .score-card { left: 16px; right: 16px; bottom: 16px; }
  .check-grid, .sidebar { grid-template-columns: 1fr; }
  .article-card { padding: 24px 20px; }
  .footer-bottom { flex-direction: column; }
}
