
/* Shared design system and page styling. */
:root {
  --bg: #060607;
  --surface: #111114;
  --surface-2: #17171c;
  --glass: rgba(18, 18, 22, .72);
  --ink: #f8f4ea;
  --muted: #b8ad9a;
  --brand: #f6a31a;
  --brand-2: #ffbe33;
  --brand-3: #d98000;
  --line: rgba(246, 163, 26, .23);
  --shadow: 0 28px 80px rgba(0, 0, 0, .45);
  --radius: 28px;
  --radius-small: 16px;
  --max: 1180px;
}

* { 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(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(246, 163, 26, .18), transparent 34rem),
    radial-gradient(circle at 80% 0%, rgba(255, 190, 51, .13), transparent 28rem),
    linear-gradient(180deg, #070707 0%, #0c0a07 46%, #050505 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 70%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
.page-glow {
  position: fixed;
  width: 44rem;
  height: 44rem;
  border-radius: 999px;
  background: rgba(246, 163, 26, .12);
  filter: blur(60px);
  right: -15rem;
  top: 10rem;
  pointer-events: none;
}
.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(var(--max), calc(100% - 36px));
  margin: 14px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(7, 7, 8, .72);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .32);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.02em; }
.brand img { width: 44px; height: 44px; }
.brand span { font-size: 1.05rem; text-transform: uppercase; }
.brand strong { color: var(--brand); }
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
  padding: 11px 13px;
  border-radius: 999px;
  transition: .2s ease;
}
.nav-link:hover, .nav-link.active { color: #070707; background: var(--brand); }
.menu-toggle { display: none; border: 0; background: var(--brand); color: #070707; width: 42px; height: 42px; border-radius: 50%; font-size: 1.15rem; font-weight: 900; }
.hero { min-height: 78vh; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 88px 0 56px; }
.eyebrow { margin: 0 0 12px; color: var(--brand-2); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 900; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3.4rem, 8vw, 7.4rem); line-height: .84; letter-spacing: -.08em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 4rem); line-height: .94; letter-spacing: -.055em; margin-bottom: 16px; }
h3 { font-size: 1.28rem; margin-bottom: 10px; letter-spacing: -.02em; }
.lead { color: #e1d5bd; font-size: clamp(1.05rem, 2.2vw, 1.35rem); line-height: 1.65; max-width: 720px; }
p { color: var(--muted); line-height: 1.75; }
.hero-actions, .center { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 28px; }
.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #090909; box-shadow: 0 20px 46px rgba(246, 163, 26, .24); }
.btn.ghost { background: rgba(255,255,255,.04); color: var(--ink); }
.hero-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 38px; }
.hero-stats div, .stat-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border-radius: var(--radius-small);
  padding: 18px;
}
.hero-stats strong, .stat-card strong { display: block; color: var(--brand); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1; }
.hero-stats span, .stat-card span { color: var(--muted); font-size: .84rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.countdown-section { text-align: center; padding: 38px 0 10px; display: none; }
.countdown-section.visible { display: block; }
.countdown-grid { display: grid; grid-template-columns: repeat(4, auto); gap: 26px; justify-content: center; margin-top: 14px; }
.countdown-grid div { display: flex; flex-direction: column; align-items: center; min-width: 100px; }
.countdown-grid span { font-size: clamp(3.6rem, 8vw, 5.6rem); font-weight: 1000; color: var(--brand); line-height: 1; }
.countdown-grid small { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 800; margin-top: 4px; }
.hero-visual { position: relative; min-height: 620px; display: grid; place-items: center; }
.orbital-card {
  position: relative;
  width: min(440px, 84vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(246,163,26,.28), rgba(246,163,26,.04) 62%, transparent 64%);
  filter: drop-shadow(0 35px 80px rgba(0,0,0,.52));
}
.main-logo-card img { width: 76%; border-radius: 50%; box-shadow: 0 0 0 12px rgba(246, 163, 26, .12), 0 0 90px rgba(246, 163, 26, .42); }
.pulse-ring { position: absolute; inset: 8%; border: 1px solid rgba(255,190,51,.4); border-radius: 50%; animation: pulse 3s ease-in-out infinite; }
.glass-card {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 24px;
}
.match-ticker { position: absolute; left: 0; bottom: 72px; width: min(360px, 90%); padding: 22px; }
.match-ticker h3 { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.match-ticker h3 span { color: var(--brand); font-size: .86rem; }
.side-card { position: absolute; right: 20px; top: 92px; width: 220px; padding: 20px; transform: rotate(5deg); }
.side-card strong { display: block; color: var(--brand); margin-bottom: 8px; }
.strip { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; padding: 18px; border: 1px solid var(--line); background: rgba(246,163,26,.08); border-radius: 999px; }
.strip span { color: var(--ink); font-weight: 900; text-transform: uppercase; font-size: .82rem; letter-spacing: .08em; }
.section { padding: 84px 0 0; }
.section-heading { max-width: 760px; margin-bottom: 30px; }
.section-heading.compact { margin-bottom: 18px; }
.feature-grid, .team-grid, .player-grid, .rules-grid, .bracket-grid, .stats-grid { display: grid; gap: 18px; }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.player-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rules-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 34px 0 0; }
.bracket-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 28px 0 0; }
.stats-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); margin: 24px 0 10px; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card-item { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.062), rgba(255,255,255,.024)); overflow: hidden; }
.card-visual { aspect-ratio: 5/7; background: var(--surface); display: grid; place-items: center; padding: 14px; }
.card-visual img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.card-body { padding: 18px 20px; }
.card-body h3 { color: var(--brand); font-size: 1rem; margin-bottom: 6px; }
.card-body p { font-size: .85rem; margin: 0; }
.highlight-golden { background: radial-gradient(circle at 50% 0%, rgba(246,163,26,.22), transparent 18rem), linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border-color: var(--brand); text-align: center; padding: 48px; }
.feature-card, .team-card, .player-card, .panel, .rule-card, .match-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.062), rgba(255,255,255,.024));
  box-shadow: 0 22px 70px rgba(0,0,0,.24);
}
.feature-card, .rule-card { padding: 26px; }
.feature-card span, .rule-card span { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; background: var(--brand); color: #070707; font-weight: 1000; margin-bottom: 22px; }
.team-card { height: 100%; padding: 22px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; color: var(--ink); text-decoration: none; position: relative; transition: background .25s, box-shadow .25s; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.062), rgba(255,255,255,.024)); box-shadow: 0 22px 70px rgba(0,0,0,.24); }
.team-card:hover { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #090909; box-shadow: 0 22px 70px rgba(0,0,0,.4); }
.team-card:hover h3 { color: #090909; }
.team-card:hover .eyebrow { color: #2d1b00; }
.team-card:hover p { color: #090909; }
.team-card:hover .mini-stats span { border-color: #2d1b00; color: #090909; }
.team-card:hover .president-line { background: rgba(0,0,0,.12); }
.team-card h3 { color: var(--ink); transition: color .25s; }
.team-card-link { position: absolute; inset: 0; border-radius: inherit; z-index: 1; }
.team-card-logo { display: block; position: relative; z-index: 2; }
.president-thumb { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid #090909; flex-shrink: 0; }
.team-card-logo img { width: 112px; height: 112px; border-radius: 24px; background: var(--brand); object-fit: cover; }
.team-card h3, .player-card h3 a, .team-cell a, .standings a { color: var(--ink); }
.player-card h3 a:hover, .standings a:hover { color: var(--brand); }
.president-line { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; margin: -2px 0 0; padding: 8px 12px; border-radius: 16px; color: #1a1202; background: linear-gradient(135deg, var(--brand), var(--brand-2)); font-size: .78rem; font-weight: 900; box-shadow: 0 14px 34px rgba(246, 163, 26, .18); }
.mini-stats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.team-card .mini-stats { margin-top: auto; }
.mini-stats span { color: var(--brand-2); border: 1px solid var(--line); border-radius: 999px; padding: 6px 9px; font-size: .76rem; font-weight: 900; }
.form-row { display: flex; gap: 5px; margin-top: 14px; }
.form-pill { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; font-size: .7rem; font-weight: 1000; }
.form-v { background: #42c66a; color: #031306; }
.form-n { background: #d6c16a; color: #181001; }
.form-p { background: #d95454; color: #170202; }
.player-card { padding: 18px; }
.president-player-card { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #090909; border: 0; box-shadow: 0 18px 44px rgba(246, 163, 26, .2); }
.president-player-card .eyebrow, .president-player-card h3 { color: #090909; }
.president-player-card .mini-stats span { color: #090909; border-color: rgba(9, 9, 9, .22); background: rgba(9, 9, 9, .08); }
.player-number { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 20px; color: #070707; background: linear-gradient(135deg, var(--brand), var(--brand-2)); font-size: 1.7rem; font-weight: 1000; }
.motto { color: var(--brand-2); font-size: 1.05rem; font-style: italic; margin-bottom: 20px; }
.split-section, .two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.panel { padding: 26px; }
.social-panel { min-height: 100%; background: radial-gradient(circle at 80% 20%, rgba(246,163,26,.25), transparent 18rem), linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); }
.social-panel .cta-text { font-size: .95rem; color: var(--brand); font-weight: 700; margin-top: 12px; }
.page-hero { padding: 80px 0 28px; }
.compact-hero h1 { max-width: 980px; }
.table-wrap { overflow-x: auto; border-radius: 18px; border: 1px solid rgba(255,255,255,.05); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 12px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.07); }
th { color: var(--brand); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
td { color: #e8dfd0; }
.team-cell { display: flex; align-items: center; gap: 10px; min-width: 210px; }
.team-cell img { width: 34px; height: 34px; border-radius: 50%; }
.fixtures { display: grid; gap: 12px; }
.fixture { display: grid; grid-template-columns: auto 1fr 70px 1fr; align-items: center; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.035); }
.fixture-date { font-size: .72rem; color: var(--brand-2); line-height: 1.4; text-align: center; }
.fixture strong { color: #090909; background: var(--brand); border-radius: 999px; padding: 7px 10px; text-align: center; }
.fixture span:last-child { text-align: right; }
.match-card { padding: 24px; }
.match-round { color: var(--brand); text-transform: uppercase; font-size: .78rem; font-weight: 900; letter-spacing: .12em; margin-bottom: 18px; }
.match-datetime { display: inline; color: var(--brand-2); font-weight: 600; letter-spacing: 0; text-transform: none; margin-left: 8px; }
.match-teams { display: grid; grid-template-columns: 1fr 92px 1fr; gap: 14px; align-items: center; }
.match-teams a, .match-teams div { display: grid; justify-items: center; gap: 10px; text-align: center; font-weight: 900; }
.match-teams img { width: 92px; border-radius: 26px; }
.tbd-logo { width: 92px; height: 92px; border-radius: 26px; background: var(--surface); border: 2px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--brand); font-weight: 900; font-size: 1.5rem; line-height: 1; gap: 2px; }
.tbd-logo small { font-size: 0.6rem; color: var(--muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.match-teams strong { text-align: center; color: var(--brand); font-size: 2rem; }
.match-meta { margin-top: 20px; display: grid; gap: 8px; color: var(--muted); }
.final-hero { min-height: 52vh; display: grid; align-content: center; }
.final-stage { display: grid; grid-template-columns: 1fr 240px 1fr; align-items: center; gap: 20px; padding: 28px; border: 1px solid var(--line); border-radius: 38px; background: radial-gradient(circle at 50% 0%, rgba(246,163,26,.18), transparent 26rem), rgba(255,255,255,.035); }
.final-team { text-align: center; }
.final-team img { width: 190px; margin: 0 auto 18px; border-radius: 38px; }
.final-team .tbd-logo { width: 190px; height: 190px; margin: 0 auto 18px; border-radius: 38px; font-size: 2.8rem; border-width: 3px; }
.final-score { display: grid; place-items: center; gap: 10px; }
.final-score span { color: var(--brand); text-transform: uppercase; font-weight: 900; letter-spacing: .14em; }
.final-score strong { font-size: 5rem; line-height: .9; }
.final-score small { color: var(--muted); }
.timeline, .ordered { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.timeline li, .ordered li { padding: 14px 16px; border: 1px solid var(--line); border-radius: 16px; color: #e8dfd0; background: rgba(255,255,255,.035); }
.timeline span { display: inline-flex; color: var(--brand); font-weight: 900; min-width: 68px; }
.ordered { counter-reset: item; }
.ordered li { counter-increment: item; }
.ordered li::before { content: counter(item) ". "; color: var(--brand); font-weight: 1000; }
.team-hero, .player-hero { display: grid; grid-template-columns: 310px 1fr; align-items: center; gap: 34px; padding: 70px 0 24px; }
.team-hero-logo img { border-radius: 52px; box-shadow: 0 26px 80px rgba(246,163,26,.2); }
.president-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 24px 22px; border: 0; border-radius: 22px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #090909; margin-top: 18px; box-shadow: 0 20px 48px rgba(246, 163, 26, .22); }
.president-card img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 3px solid #090909; }
.president-card span { display: block; color: #2d1b00; text-transform: uppercase; font-size: .75rem; font-weight: 1000; letter-spacing: .12em; }
.president-card strong { display: block; color: #070707; font-size: 1.32rem; }
.president-card em { display: block; color: #2d1b00; font-style: normal; font-weight: 900; margin-top: 2px; }
.player-badge { position: relative; width: 285px; height: 285px; display: grid; place-items: center; }
.player-badge img { position: absolute; inset: 0; border-radius: 52px; opacity: .42; filter: grayscale(.2); }
.player-badge span { position: relative; z-index: 1; font-size: 8rem; font-weight: 1000; color: var(--brand); text-shadow: 0 10px 50px rgba(0,0,0,.8); }
.skills { display: grid; gap: 18px; }
.skill div { display: flex; justify-content: space-between; color: #e8dfd0; font-weight: 900; margin-bottom: 7px; }
.skill strong { color: var(--brand); }
.skill i { display: block; height: 12px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; position: relative; }
.skill i::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: var(--value); border-radius: inherit; background: linear-gradient(90deg, var(--brand-3), var(--brand-2)); }
.site-footer { width: min(var(--max), calc(100% - 36px)); margin: 96px auto 28px; padding: 24px; border: 1px solid var(--line); border-radius: 32px; display: flex; justify-content: space-between; gap: 22px; align-items: center; background: rgba(255,255,255,.035); }
.site-footer img { width: 62px; height: 62px; float: left; margin-right: 14px; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: var(--brand); font-weight: 900; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes pulse { 0%,100% { transform: scale(.96); opacity: .45; } 50% { transform: scale(1.06); opacity: .85; } }
@media (max-width: 1040px) {
  .hero, .team-hero, .player-hero, .split-section, .two-columns, .final-stage { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid, .player-grid, .stats-grid, .rules-grid, .bracket-grid, .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .final-stage { text-align: center; }
}
@media (max-width: 820px) {
  .site-header { border-radius: 26px; align-items: flex-start; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 68px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 12px; border: 1px solid var(--line); border-radius: 24px; background: rgba(7,7,8,.96); }
  .main-nav.open { display: flex; }
  .nav-link { text-align: center; }
  h1 { font-size: 4.45rem; line-height: .9; letter-spacing: 0; }
  h2 { font-size: 2.7rem; line-height: 1; letter-spacing: 0; }
  .hero, .page-hero, .team-hero, .player-hero, .final-hero { text-align: center; }
  .hero { min-height: auto; padding: 48px 0 38px; }
  .page-hero { padding: 58px 0 24px; }
  .section { padding-top: 64px; }
  .section-heading, .compact-hero h1, .lead { margin-left: auto; margin-right: auto; }
  .countdown-grid { gap: 20px; }
  .countdown-grid div { min-width: 80px; }
  .hero-actions, .center { justify-content: center; }
  .hero-actions .btn, .center .btn, .social-panel .btn { width: min(100%, 380px); }
  .btn { min-height: 54px; font-size: 1rem; }
  .hero-stats, .feature-grid, .team-grid, .player-grid, .stats-grid, .rules-grid, .bracket-grid, .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .stats-grid .stat-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .hero-stats div, .stat-card { text-align: center; padding: 18px 14px; }
  .match-ticker, .side-card { position: static; width: 100%; transform: none; margin-top: 14px; }
  .hero-visual { display: block; min-height: auto; }
  .orbital-card { width: min(380px, 100%); margin: 0 auto; }
  .strip { border-radius: 24px; }
  .strip span { flex: 1 1 calc(50% - 12px); text-align: center; }
  .team-hero-logo img, .player-badge { width: min(100%, 310px); height: auto; margin: 0 auto; }
  .player-badge { aspect-ratio: 1; }
  .president-card { width: min(100%, 360px); margin-left: auto; margin-right: auto; }
  .mini-stats { justify-content: center; width: 100%; }
  .mini-stats span { display: inline-flex; align-items: center; justify-content: center; min-height: 32px; text-align: center; line-height: 1.2; white-space: normal; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .countdown-grid { gap: 16px; }
  .countdown-grid div { min-width: 0; }
  .countdown-grid small { font-size: .65rem; }
}
@media (max-width: 560px) {
  main, .site-header, .site-footer { width: min(100% - 18px, var(--max)); }
  h1 { font-size: 3.35rem; }
  h2 { font-size: 2.18rem; }
  h3 { font-size: 1.12rem; letter-spacing: 0; }
  .lead { font-size: 1.12rem; line-height: 1.55; }
  .hero-actions .btn, .center .btn, .social-panel .btn { width: 100%; }
  .feature-grid, .team-grid, .player-grid, .stats-grid, .bracket-grid, .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .rules-grid { grid-template-columns: 1fr; gap: 10px; }
  .panel, .match-card { padding: 20px; }
  .feature-card, .rule-card { padding: 16px 12px; }
  .feature-card span, .rule-card span { width: 38px; height: 38px; margin-bottom: 14px; }
  .team-card, .player-card { border-radius: 20px; }
  .team-card { padding: 14px 10px; gap: 9px; }
  .team-card-logo img { width: 104px; height: 104px; border-radius: 22px; }
  .team-card p { margin-bottom: 0; font-size: .84rem; line-height: 1.45; }
  .team-card .president-line { padding: 6px 8px; font-size: .74rem; }
  .player-card { padding: 15px 12px; text-align: center; }
  .card-visual { padding: 8px; }
  .card-body { padding: 12px 10px; }
  .card-body p { font-size: .78rem; line-height: 1.45; }
  .mini-stats { gap: 6px; margin-top: 10px; }
  .mini-stats span { flex: 1 1 auto; padding: 6px 7px; font-size: .7rem; }
  .fixture, .match-teams { grid-template-columns: 1fr; text-align: center; }
  .fixture-date { display: block; margin-bottom: 6px; }
  .fixture span:last-child { text-align: center; }
  th, td { padding: 8px 5px; font-size: .68rem; }
  td:first-child, th:first-child { padding-left: 8px; }
  td:last-child, th:last-child { padding-right: 8px; }
  .team-cell { min-width: 0; gap: 6px; }
  .team-cell img { width: 24px; height: 24px; }
}
.legend { margin-top: 12px; font-size: .72rem; color: var(--brand-2); text-align: center; letter-spacing: .06em; }
