:root{
  --bg:#10120E;
  --bg-rgb:16, 18, 14;
  --surface:#191E14;
  --surface-rgb:25, 30, 20;
  --text:#F2F5EA;
  --text-rgb:242, 245, 234;
  --muted:#B8C0A5;
  --muted-rgb:184, 192, 165;
  --primary:#84CC16;
  --primary-rgb:132, 204, 22;
  --secondary:#F59E0B;
  --secondary-rgb:245, 158, 11;
  --accent:#06B6D4;
  --accent-rgb:6, 182, 212;
  --border:#2D3A22;
  --border-rgb:45, 58, 34;
  --ring: var(--primary);
  --radius-sm:9px;
  --radius:14px;
  --radius-lg:19px;
  --shadow: 0 14px 28px rgba(0,0,0,0.18);
  --outline:1px;
  --motion:180ms;
  --font-body:"Work Sans", "Noto Sans SC", ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display:"Cormorant Garamond", "Noto Serif SC", ui-serif, Georgia, serif;
  --heading-weight:thin;
  --banner-bg:#84CC16;
  --banner-fg:#FFFFFF;
  --footer-bg:#070A12;
  --footer-fg:#EAF2FF;
  --footer-muted:rgba(234,242,255,0.72);
  --hero-grain:radial-gradient(1200px 500px at 15% 15%, rgba(255,255,255,0.10), transparent 55%),
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
  text-rendering:optimizeLegibility;
}
a{color:inherit}
img{max-width:100%;display:block}
.container{width:min(1120px, calc(100% - 32px)); margin:0 auto}
.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:16px;top:12px;width:auto;height:auto;z-index:9999;background:var(--surface);padding:10px 12px;border-radius:12px;box-shadow:var(--shadow);outline:var(--outline) solid var(--ring)}

header.site-header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:saturate(1.2) blur(8px);
  background:rgba(var(--bg-rgb), 0.92);
  border-bottom:1px solid rgba(var(--border-rgb), 0.7);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex;align-items:center;gap:10px;
  text-decoration:none;
}
.brand-mark{
  width:34px;height:34px;border-radius:12px;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow:0 10px 24px rgba(0,0,0,0.18);
  outline:0;
}
.brand-title{
  font-family:var(--font-display);
  letter-spacing:0;
  font-weight:700;
}
.nav-links{
  display:flex;align-items:center;gap:18px;
}
.nav-links a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  color:rgba(var(--text-rgb), 0.86);
}
.nav-links a:hover{background:rgba(var(--surface-rgb), 0.8)}
.nav-links a[aria-current="page"]{
  background:rgba(var(--primary-rgb), 0.12);
  color:var(--text);
}
.nav-actions{display:flex;align-items:center;gap:10px}
.nav-toggle{
  display:none;
  border:1px solid rgba(var(--border-rgb), 0.7);
  background:var(--surface);
  border-radius:14px;
  padding:10px 12px;
  color:var(--text);
}
.nav-toggle:focus-visible{outline:var(--outline) solid var(--ring);outline-offset:2px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  border-radius:999px;
  padding:11px 14px;
  text-decoration:none;
  border:1px solid transparent;
  transition:transform var(--motion) ease, background var(--motion) ease, border-color var(--motion) ease, box-shadow var(--motion) ease;
  will-change:transform;
}
.btn:focus-visible{outline:var(--outline) solid var(--ring);outline-offset:2px}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:linear-gradient(135deg, var(--primary), var(--accent));
  color:white;
  border-color:transparent;
  box-shadow:0 14px 34px rgba(0,0,0,0.18);
}
.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 46px rgba(0,0,0,0.22);
}
.btn-secondary{
  background:rgba(var(--surface-rgb), 0.92);
  border-color:rgba(var(--border-rgb), 0.75);
  color:var(--text);
}
.btn-secondary:hover{transform:translateY(-1px)}

.hero{
  position:relative;
  padding:44px 0 26px;
}
.hero-shell{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  align-items:center;
  background:var(--hero-grain) radial-gradient(1200px 520px at 80% 10%, rgba(var(--accent-rgb), 0.18), transparent 58%), linear-gradient(180deg, rgba(var(--primary-rgb), 0.12), transparent 58%);
  border:1px solid rgba(var(--border-rgb), 0.7);
  border-radius:var(--radius-lg);
  padding:26px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(var(--surface-rgb), 0.86);
  border:1px solid rgba(var(--border-rgb), 0.7);
  color:rgba(var(--text-rgb), 0.86);
  width:fit-content;
}
.hero h1{
  margin:14px 0 10px;
  font-family:var(--font-display);
  line-height:1.05;
  letter-spacing:-0.4px;
  font-weight:500;
  font-size:clamp(34px, 3.5vw, 58px);
}
.hero p{
  margin:0 0 18px;
  color:rgba(var(--text-rgb), 0.74);
  max-width:56ch;
}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap}
.hero-card{
  border-radius:var(--radius-lg);
  border:1px solid rgba(var(--border-rgb), 0.75);
  background:var(--surface);
  box-shadow:0 18px 48px rgba(0,0,0,0.18);
  padding:18px;
}
.hero-metric{
  display:grid;gap:10px;
}
.metric{
  display:flex;align-items:baseline;justify-content:space-between;gap:12px;
  padding:12px 12px;
  border-radius:var(--radius);
  background:rgba(var(--surface-rgb), 0.9);
  border:1px solid rgba(var(--border-rgb), 0.75);
}
.metric .k{font-size:13px;color:rgba(var(--text-rgb), 0.72)}
.metric .v{font-family:var(--font-display);font-weight:700}

.section{padding:26px 0}
.section-title{
  display:flex;align-items:end;justify-content:space-between;gap:14px;flex-wrap:wrap;
  margin:0 0 14px;
}
.section-title h2{
  font-family:var(--font-display);
  margin:0;
  letter-spacing:-0.2px;
  font-size:22px;
}
.section-title p{margin:0;color:rgba(var(--text-rgb), 0.72)}

.grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:14px;
}
.card{
  grid-column:span 4;
  background:var(--surface);
  border:1px solid rgba(var(--border-rgb), 0.75);
  border-radius:var(--radius-lg);
  padding:16px;
  box-shadow:0 14px 40px rgba(0,0,0,0.10);
}
.card strong{display:block;font-family:var(--font-display);font-size:16px;margin-bottom:8px}
.card p{margin:0;color:rgba(var(--text-rgb), 0.72)}
.card .mini{
  margin-top:12px;
  display:flex;gap:10px;flex-wrap:wrap;
  color:rgba(var(--text-rgb), 0.74);
  font-size:13px;
}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(var(--border-rgb), 0.75);
  background:rgba(var(--surface-rgb), 0.92);
}
.tag{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(var(--border-rgb), 0.75);
  background:rgba(var(--primary-rgb), 0.10);
  color:rgba(var(--text-rgb), 0.86);
  font-size:12px;
}
.quick-links{
  margin:18px auto 0;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  max-width:980px;
}
.quick-pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.24);
  background:rgba(255,255,255,0.12);
  color:var(--banner-fg);
  text-decoration:none;
  font-size:13px;
}
.quick-pill:hover{transform:translateY(-1px)}

.match-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:16px;
}
.match-card{
  grid-column:span 6;
  background:var(--surface);
  border:1px solid rgba(var(--border-rgb), 0.75);
  border-radius:var(--radius-lg);
  padding:16px;
  box-shadow:0 14px 44px rgba(0,0,0,0.10);
}
.match-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  color:rgba(var(--text-rgb), 0.72);
  font-size:13px;
}
.match-row{
  margin-top:12px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:12px;
}
.club{
  display:flex;
  gap:10px;
  align-items:center;
}
.club img{
  width:28px;
  height:28px;
  border-radius:10px;
  border:1px solid rgba(var(--border-rgb), 0.75);
  background:rgba(var(--surface-rgb), 0.92);
}
.club .name{
  font-family:var(--font-display);
  font-weight:700;
  letter-spacing:-0.2px;
}
.score-badge{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(var(--border-rgb), 0.75);
  background:rgba(var(--primary-rgb), 0.10);
  font-family:var(--font-display);
  font-weight:800;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:16px;
}
.team-card{
  grid-column:span 3;
  background:var(--surface);
  border:1px solid rgba(var(--border-rgb), 0.75);
  border-radius:var(--radius-lg);
  padding:16px;
  box-shadow:0 14px 44px rgba(0,0,0,0.10);
}
.team-top{
  display:flex;
  align-items:center;
  gap:12px;
}
.team-top img{
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(var(--border-rgb), 0.75);
  background:rgba(var(--surface-rgb), 0.92);
}
.team-top .t{
  font-family:var(--font-display);
  font-weight:800;
  letter-spacing:-0.2px;
}
.team-meta{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:rgba(var(--text-rgb), 0.72);
  font-size:13px;
}

.player-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:16px;
}
.player-card{
  grid-column:span 4;
  background:var(--surface);
  border:1px solid rgba(var(--border-rgb), 0.75);
  border-radius:var(--radius-lg);
  padding:16px;
  box-shadow:0 14px 44px rgba(0,0,0,0.10);
  display:grid;
  gap:12px;
}
.player-top{
  display:flex;
  gap:12px;
  align-items:center;
}
.avatar{
  width:44px;
  height:44px;
  border-radius:16px;
  border:1px solid rgba(var(--border-rgb), 0.75);
  overflow:hidden;
  background:rgba(var(--surface-rgb), 0.92);
  flex:0 0 auto;
}
.avatar img{width:100%;height:100%;object-fit:cover}
.player-name{
  font-family:var(--font-display);
  font-weight:900;
  letter-spacing:-0.3px;
}
.player-sub{
  color:rgba(var(--text-rgb), 0.72);
  font-size:13px;
}
.player-tags{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.table-wrap{
  margin-top:14px;
  background:var(--surface);
  border:1px solid rgba(var(--border-rgb), 0.75);
  border-radius:var(--radius-lg);
  overflow:auto;
  box-shadow:0 14px 44px rgba(0,0,0,0.10);
}
table.score{
  width:100%;
  border-collapse:collapse;
  min-width:720px;
}
table.score th, table.score td{
  padding:12px 12px;
  border-bottom:1px solid rgba(var(--border-rgb), 0.55);
  text-align:left;
  font-size:13px;
}
table.score th{
  font-size:12px;
  letter-spacing:0.2px;
  color:rgba(var(--text-rgb), 0.70);
  background:rgba(var(--surface-rgb), 0.60);
}
table.score td strong{
  font-family:var(--font-display);
  letter-spacing:-0.2px;
}
.score-team{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.score-team img{
  width:18px;
  height:18px;
  border-radius:7px;
  border:1px solid rgba(var(--border-rgb), 0.75);
  background:rgba(var(--surface-rgb), 0.92);
  flex:0 0 auto;
}
.score-vs{
  margin:0 10px;
  color:rgba(var(--text-rgb), 0.60);
  font-size:12px;
}

.faq{
  display:grid;
  gap:12px;
  max-width:920px;
  margin:0 auto;
}
.faq-item{
  border:1px solid rgba(var(--border-rgb), 0.75);
  border-radius:var(--radius-lg);
  background:var(--surface);
  overflow:hidden;
  box-shadow:0 14px 44px rgba(0,0,0,0.08);
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-family:var(--font-display);
  font-weight:800;
  letter-spacing:-0.2px;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary:focus-visible{outline:var(--outline) solid var(--ring);outline-offset:2px}
.faq-item .faq-body{
  padding:0 16px 16px;
  color:rgba(var(--text-rgb), 0.76);
}
.faq-item .chev{
  width:30px;
  height:30px;
  border-radius:999px;
  border:1px solid rgba(var(--border-rgb), 0.75);
  background:rgba(var(--surface-rgb), 0.92);
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.faq-item[open] .chev{transform:rotate(180deg)}

.article-grid{display:grid;gap:14px}
.article-grid.grid{
  grid-template-columns:repeat(12, 1fr);
  gap:14px;
}
.article-card{
  background:var(--surface);
  border:1px solid rgba(var(--border-rgb), 0.75);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 14px 44px rgba(0,0,0,0.10);
}
.article-card .thumb{
  aspect-ratio:16/9;
  background:linear-gradient(135deg, rgba(var(--primary-rgb), 0.24), rgba(var(--accent-rgb), 0.18));
  border-bottom:1px solid rgba(var(--border-rgb), 0.7);
}
.article-card .body{padding:14px}
.article-card h3{
  margin:0 0 8px;
  font-family:var(--font-display);
  letter-spacing:-0.2px;
  font-size:16px;
}
.article-card p{margin:0 0 12px;color:rgba(var(--text-rgb), 0.72)}
.meta{display:flex;gap:12px;flex-wrap:wrap;font-size:13px;color:rgba(var(--text-rgb), 0.7)}
.meta a{text-decoration:none}
.meta a:hover{text-decoration:underline}

.article-layout{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  align-items:start;
}
.prose{
  background:var(--surface);
  border:1px solid rgba(var(--border-rgb), 0.75);
  border-radius:var(--radius-lg);
  padding:18px;
  box-shadow:0 14px 44px rgba(0,0,0,0.10);
}
.prose h1{
  font-family:var(--font-display);
  letter-spacing:-0.6px;
  margin:0 0 10px;
  line-height:1.08;
  font-size:clamp(28px, 2.6vw, 44px);
}
.prose h2{font-family:var(--font-display);margin:18px 0 10px}
.prose p{margin:0 0 12px;color:rgba(var(--text-rgb), 0.78)}
.prose blockquote{
  margin:16px 0;
  padding:14px 16px;
  border-left:4px solid var(--primary);
  background:rgba(var(--primary-rgb), 0.1);
  border-radius:var(--radius);
}
.share{
  display:flex;gap:10px;flex-wrap:wrap;margin-top:16px;
}
.aside{
  position:sticky;top:90px;
  border:1px solid rgba(var(--border-rgb), 0.75);
  border-radius:var(--radius-lg);
  background:rgba(var(--surface-rgb), 0.92);
  padding:14px;
  box-shadow:0 14px 44px rgba(0,0,0,0.10);
}
.aside h3{margin:0 0 10px;font-family:var(--font-display)}
.aside a{text-decoration:none}
.aside a:hover{text-decoration:underline}

.form{
  display:grid;gap:12px;
  background:var(--surface);
  border:1px solid rgba(var(--border-rgb), 0.75);
  border-radius:var(--radius-lg);
  padding:16px;
  box-shadow:0 14px 44px rgba(0,0,0,0.10);
}
label{font-size:13px;color:rgba(var(--text-rgb), 0.72)}
input,textarea{
  width:100%;
  border-radius:var(--radius);
  border:1px solid rgba(var(--border-rgb), 0.78);
  background:rgba(var(--surface-rgb), 0.92);
  padding:11px 12px;
  font:inherit;
  color:var(--text);
}
input:focus-visible,textarea:focus-visible{outline:var(--outline) solid var(--ring);outline-offset:2px}
textarea{min-height:110px;resize:vertical}

footer.site-footer{
  margin-top:28px;
  padding:26px 0;
  border-top:1px solid rgba(var(--border-rgb), 0.7);
  color:rgba(var(--text-rgb), 0.72);
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:14px;
}
.footer-grid a{text-decoration:none}
.footer-grid a:hover{text-decoration:underline}
.fineprint{margin-top:12px;font-size:13px}

header.site-header{
  backdrop-filter:none;
  background:var(--surface);
}

.nav{
  padding:12px 0;
}
.nav-links a{
  border-radius:999px;
  padding:10px 12px;
}
.nav-actions{
  gap:8px;
}
.btn-xs{
  padding:9px 12px;
  border-radius:999px;
  font-weight:600;
}
.btn-ghost{
  background:transparent;
  border-color:rgba(var(--border-rgb), 0.75);
  color:rgba(var(--text-rgb), 0.9);
}
.btn-ghost:hover{transform:translateY(-1px); background:rgba(var(--surface-rgb), 0.85)}
.btn-solid{
  background:linear-gradient(135deg, var(--primary), var(--accent));
  color:white;
  border-color:transparent;
  box-shadow:0 14px 34px rgba(0,0,0,0.18);
}
.btn-solid:hover{transform:translateY(-1px); box-shadow:0 18px 46px rgba(0,0,0,0.22)}

.banner{
  position:relative;
  background:var(--banner-bg);
  color:var(--banner-fg);
  overflow:hidden;
}
.banner::before{
  content:'';
  position:absolute; inset:-40px;
  background:
    radial-gradient(420px 420px at 8% 40%, rgba(255,255,255,0.12), transparent 60%),
    radial-gradient(520px 520px at 92% 18%, rgba(255,255,255,0.14), transparent 62%),
    radial-gradient(320px 320px at 86% 78%, rgba(255,255,255,0.10), transparent 62%);
  pointer-events:none;
}
body[data-style="brutal"] .banner::before{
  background:
    radial-gradient(380px 380px at 10% 40%, rgba(255,255,255,0.10), transparent 62%),
    radial-gradient(480px 480px at 90% 18%, rgba(255,255,255,0.12), transparent 64%);
}
body[data-style="neon"] .banner::before{
  background:
    radial-gradient(520px 520px at 20% 42%, rgba(255,255,255,0.16), transparent 62%),
    radial-gradient(620px 620px at 88% 18%, rgba(255,255,255,0.16), transparent 66%),
    radial-gradient(420px 420px at 78% 82%, rgba(255,255,255,0.14), transparent 66%);
}
body[data-style="luxury"] .banner{
  background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)), var(--banner-bg);
}
body[data-style="glass"] header.site-header{
  background:rgba(var(--surface-rgb), 0.72);
  backdrop-filter:saturate(1.2) blur(12px);
}
.banner-inner{
  position:relative;
  padding:64px 0 46px;
  text-align:center;
}
.banner h1{
  margin:0;
  font-family:var(--font-display);
  font-size:clamp(34px, 4vw, 56px);
  line-height:1.06;
  letter-spacing:-0.6px;
}
.banner p{
  margin:14px auto 0;
  max-width:56ch;
  opacity:0.92;
}
.download-row{
  margin-top:22px;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.download-btn{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  background:rgba(255,255,255,0.92);
  color:#0B1220;
  border:1px solid rgba(255,255,255,0.22);
  padding:12px 16px;
  border-radius:16px;
  box-shadow:0 14px 34px rgba(0,0,0,0.18);
  min-width:220px;
}
.download-btn:hover{transform:translateY(-1px)}
.download-icon{
  width:38px;height:38px;border-radius:12px;
  background:linear-gradient(135deg, rgba(var(--primary-rgb), 0.9), rgba(var(--accent-rgb), 0.9));
  display:grid;place-items:center;
  color:white;
  flex:0 0 auto;
}
.download-text{display:grid;gap:2px;text-align:left}
.download-text .small{font-size:12px;opacity:0.78}
.download-text .big{font-weight:700}
.banner-bullets{
  margin:24px auto 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px 18px;
  max-width:980px;
}
.banner-bullets li{
  display:flex;align-items:center;gap:10px;
  font-size:13px;
  opacity:0.92;
}
.dot{
  width:18px;height:18px;border-radius:999px;
  background:rgba(255,255,255,0.18);
  border:1px solid rgba(255,255,255,0.24);
  display:grid;place-items:center;
}

.section-pad{padding:56px 0}
.section-head{
  text-align:center;
  max-width:820px;
  margin:0 auto 26px;
}
.section-head h2{
  margin:0;
  font-family:var(--font-display);
  font-size:clamp(22px, 2.2vw, 34px);
  letter-spacing:-0.3px;
}
.section-head p{
  margin:10px auto 0;
  color:rgba(var(--text-rgb), 0.74);
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:16px;
}
.feature-card{
  grid-column:span 4;
  background:var(--surface);
  border:1px solid rgba(var(--border-rgb), 0.75);
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 44px rgba(0,0,0,0.10);
}
.feature-icon{
  width:44px;height:44px;border-radius:14px;
  background:rgba(var(--primary-rgb), 0.12);
  border:1px solid rgba(var(--border-rgb), 0.75);
  display:grid;place-items:center;
  color:var(--primary);
  margin-bottom:10px;
}
.feature-card h3{
  margin:0 0 8px;
  font-family:var(--font-display);
  font-size:16px;
  letter-spacing:-0.2px;
}
.feature-card p{
  margin:0;
  color:rgba(var(--text-rgb), 0.72);
  font-size:14px;
}

.news-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:18px;
}
.news-card{
  grid-column:span 4;
  background:var(--surface);
  border:1px solid rgba(var(--border-rgb), 0.75);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 14px 44px rgba(0,0,0,0.10);
}
.news-thumb{
  aspect-ratio:16/9;
  background:rgba(var(--primary-rgb), 0.10);
  border-bottom:1px solid rgba(var(--border-rgb), 0.7);
}
.news-thumb img{width:100%;height:100%;object-fit:cover}
.news-body{padding:16px}
.news-body h3{
  margin:0 0 10px;
  font-family:var(--font-display);
  font-size:16px;
  letter-spacing:-0.2px;
}
.news-body p{
  margin:0 0 14px;
  color:rgba(var(--text-rgb), 0.72);
  font-size:14px;
}
.news-meta{
  display:flex;gap:10px;flex-wrap:wrap;
  color:rgba(var(--text-rgb), 0.68);
  font-size:13px;
}
.news-meta a{text-decoration:none}
.news-meta a:hover{text-decoration:underline}
.center-actions{display:flex;justify-content:center;margin-top:22px}

footer.site-footer{
  margin-top:0;
  background:var(--footer-bg);
  color:var(--footer-fg);
  border-top:none;
}
.site-footer a{color:inherit}
.footer-wrap{
  padding:56px 0 34px;
}
.footer-grid{
  grid-template-columns:1.8fr 1fr 1fr 1.2fr;
  gap:18px;
}
.footer-grid p{color:var(--footer-muted)}
.footer-panel{
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.06);
  border-radius:18px;
  padding:14px;
}
.footer-panel input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(0,0,0,0.12);
  padding:11px 12px;
  color:var(--footer-fg);
  outline:none;
}
.footer-panel input::placeholder{color:rgba(234,242,255,0.55)}
.footer-panel .row{display:grid;gap:10px;margin-top:10px}
.footer-panel .row .btn{width:100%;justify-content:center}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.10);
  margin-top:26px;
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:rgba(234,242,255,0.62);
  font-size:13px;
}

.to-top{
  position:fixed;
  right:16px;
  bottom:18px;
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid rgba(var(--border-rgb), 0.75);
  background:var(--surface);
  color:rgba(var(--text-rgb), 0.92);
  display:grid;
  place-items:center;
  box-shadow:0 18px 46px rgba(0,0,0,0.18);
  cursor:pointer;
}
.to-top:focus-visible{outline:var(--outline) solid var(--ring);outline-offset:2px}

@media (max-width: 900px){
  .hero-shell{grid-template-columns:1fr}
  .article-layout{grid-template-columns:1fr}
  .aside{position:static}
  .feature-card{grid-column:span 6}
  .news-card{grid-column:span 6}
  .match-card{grid-column:span 12}
  .team-card{grid-column:span 4}
  .player-card{grid-column:span 6}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 720px){
  .nav-links{display:none}
  .nav-toggle{display:inline-flex}
  .grid{grid-template-columns:1fr}
  .card{grid-column:span 12}
  .feature-card{grid-column:span 12}
  .news-card{grid-column:span 12}
  .team-card{grid-column:span 6}
  .player-card{grid-column:span 12}
  .download-btn{min-width:min(420px, 100%); width:min(420px, 100%)}
  .banner-inner{padding:52px 0 40px}
  .footer-grid{grid-template-columns:1fr}
}
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important; transition:none !important; animation:none !important}
}