:root {
  --c-brand: #8B0015;
  --c-brand-light: #B01028;
  --c-brand-glow: rgba(139,0,21,.08);
  --c-gold: #D4A017;
  --c-gold-light: #E6B82E;
  --c-green: #1B6B2B;
  --c-red: #B71C1C;
  --c-orange: #CC5500;
  --c-bg: #FFFFFF;
  --c-bg-muted: #F9FAFB;
  --c-text: #111827;
  --c-text-2: #6B7280;
  --c-text-3: #9CA3AF;
  --c-border: #E5E7EB;
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1100px;
  --pad-x: clamp(1rem, 4vw, 2rem);
  --header-h: 88px;
  --radius: 6px;
  --radius-sm: 4px;
  --ease: cubic-bezier(.25,.46,.45,.94);
  --space-xs: .25rem;
  --space-sm: .5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem; --sp-8: 2rem; --sp-10: 2.5rem;
  --sp-12: 3rem; --sp-16: 4rem; --sp-20: 5rem;
  --text-xs: .7rem; --text-sm: .82rem;
  --f-display: 'Inter', sans-serif;
  --f-body: 'Inter', sans-serif;
  --f-mono: 'Inter', monospace;
  --radius-lg: 8px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
table { border-collapse: collapse; }
:focus-visible { outline: 2px solid var(--c-brand); outline-offset: 2px; border-radius: var(--radius-sm); }
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--c-brand); color: #fff;
  padding: .4rem 1rem; border-radius: 0 0 var(--radius) var(--radius);
  font-size: .75rem; z-index: 9999;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--f-sans); font-weight: 700; line-height: 1.25; letter-spacing: -.01em; color: var(--c-text); }
h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.2rem, 3vw, 1.75rem); }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); }
h4 { font-size: .95rem; }
.label { font-size: .7rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--c-text-3); }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

/* ── SEPARATOR ── */
.ef-sep { height: 1px; background: var(--c-border); margin: var(--space-2xl) 0; }

/* ── HEADER ── */
.site-header { position: sticky; top: 0; z-index: 200; height: var(--header-h); background: var(--c-bg); border-bottom: 1px solid var(--c-border); transition: border-color .2s var(--ease); }
.site-header.is-scrolled { border-bottom-color: transparent; box-shadow: 0 1px 0 var(--c-border); }
.site-header__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); height: 100%; display: flex; align-items: center; gap: var(--space-lg); }
.site-logo { display: flex; align-items: center; gap: var(--space-sm); flex-shrink: 0; }
.site-logo__mark { width: 75px; height: 75px; }
.site-logo__text { display: flex; flex-direction: column; gap: 1px; }
.site-logo__name { font-weight: 700; font-size: .9rem; letter-spacing: .02em; text-transform: uppercase; line-height: 1; color: var(--c-text); }
.site-logo__sub { font-size: .5rem; color: var(--c-text-3); letter-spacing: .06em; text-transform: uppercase; }
.main-nav { margin-left: auto; }
.main-nav__list { display: flex; align-items: center; gap: 0; }
.main-nav__link { display: block; font-weight: 500; font-size: .82rem; color: var(--c-text-2); padding: .4rem .8rem; transition: color .2s; }
.main-nav__link:hover { color: var(--c-text); }
.main-nav__link.is-active { color: var(--c-brand); font-weight: 600; }
.main-nav__link--highlight { padding: .4rem 1rem; margin-left: .5rem; background: var(--c-brand); color: #fff !important; border-radius: var(--radius); font-weight: 600; }
.main-nav__link--highlight:hover { background: var(--c-brand-light); }
.header-social { display: flex; gap: 2px; flex-shrink: 0; margin-left: var(--space-sm); }
.header-social__btn { width: 32px; height: 32px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--c-text-3); transition: color .2s, background .2s; }
.header-social__btn:hover { background: var(--c-bg-muted); color: var(--c-brand); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: var(--space-sm); margin-left: auto; border-radius: var(--radius); }
.menu-toggle:hover { background: var(--c-bg-muted); }
.menu-toggle__bar { display: block; width: 20px; height: 2px; background: var(--c-text); border-radius: 1px; transition: transform .25s var(--ease), opacity .2s; }
.menu-toggle.is-open .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero { padding: var(--space-3xl) 0 var(--space-2xl); background: var(--c-bg-muted) url('../img/hero-bg.jpg') center/cover no-repeat; border-bottom: 1px solid var(--c-border); margin-top: -1px; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.85); }
.hero__content { max-width: 700px; position: relative; z-index: 1; }
.hero__title { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; margin-bottom: var(--space-lg); color: var(--c-text); }
.hero__title-accent { color: var(--c-brand); }
.hero__desc { font-size: 1.05rem; color: var(--c-text-2); max-width: 45ch; line-height: 1.6; margin-bottom: var(--space-xl); }
.hero__actions { display: flex; gap: var(--space-md); flex-wrap: wrap; }

/* ── VÍDEOS ── */
.videos-section { padding: var(--space-2xl) 0 var(--space-3xl); }
.videos-section__head { margin-bottom: var(--space-xl); }
.videos-section__title { margin-bottom: .25rem; }
.videos-section__sub { color: var(--c-text-2); font-size: .9rem; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--space-lg); }
.video-card { display: flex; flex-direction: column; gap: var(--space-sm); }
.video-card__thumb {
  position: relative; display: block; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg); overflow: hidden; background: #000;
  border: 1px solid var(--c-border); padding: 0;
}
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.video-card__thumb:hover img { transform: scale(1.03); opacity: .92; }
.video-card__fallback {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; padding: 1rem; text-align: center; background: linear-gradient(135deg, var(--c-brand), #000);
}
.video-card__playbar {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.6); transition: transform .2s var(--ease);
}
.video-card__thumb:hover .video-card__playbar { transform: scale(1.12); }
.video-card__title { font-size: .95rem; font-weight: 600; line-height: 1.35; }
.video-embed { width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); border: 1px solid var(--c-border); background: #000; display: block; }

/* ── POSTS ── */
.posts-section { padding: var(--space-2xl) 0 0; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--space-lg); }
.post-card { display: flex; flex-direction: column; gap: var(--space-sm); }
.post-card__thumb { display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; background: var(--c-bg-muted); border: 1px solid var(--c-border); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.post-card__thumb:hover img { transform: scale(1.03); opacity: .92; }
.post-card__fallback { display: flex; height: 100%; align-items: center; justify-content: center; color: #fff; font-weight: 700; padding: 1rem; text-align: center; background: linear-gradient(135deg, var(--c-brand), #000); }
.post-card__title { font-size: 1rem; font-weight: 700; line-height: 1.35; margin-bottom: .25rem; }
.post-card__title a { color: inherit; text-decoration: none; }
.post-card__title a:hover { color: var(--c-brand); }
.post-card__excerpt { font-size: .88rem; color: var(--c-text-2); line-height: 1.5; }
.post-card__more { font-weight: 700; font-size: .85rem; color: var(--c-brand); text-decoration: none; }
.post-card__more:hover { text-decoration: underline; }

/* ── POST PAGE ── */
.post-page { padding: var(--space-2xl) 0 var(--space-3xl); }
.post-page__inner { max-width: 760px; }
.post-page__meta { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .8rem; color: var(--c-text-3); font-family: var(--f-mono); margin-bottom: var(--space-sm); }
.post-page__home { color: var(--c-brand); text-decoration: none; font-weight: 600; }
.post-page__home:hover { text-decoration: underline; }
.post-page__title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; margin-bottom: var(--space-lg); }
.post-page__thumb { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-border); margin-bottom: var(--space-lg); }
.post-page__thumb img { width: 100%; height: auto; display: block; object-fit: cover; }
.post-page__body { font-size: 1.05rem; line-height: 1.75; color: var(--c-text); white-space: normal; }
.post-page__body br { content: ''; display: block; margin-bottom: 1rem; }
.post-page__crosslinks { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-sm); margin-top: var(--space-xl); }
.post-page__crosslink { display: flex; flex-direction: column; gap: .25rem; padding: var(--space-md); border: 1px solid var(--c-border); border-radius: var(--radius-lg); text-decoration: none; background: var(--c-bg-muted); transition: border-color .15s var(--ease), background .15s var(--ease); }
.post-page__crosslink:hover { border-color: var(--c-brand); background: var(--c-bg); }
.post-page__crosslink-title { font-weight: 700; color: var(--c-text); }
.post-page__crosslink-sub { font-size: .8rem; color: var(--c-text-3); }
.post-page__back { margin-top: var(--space-xl); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: var(--space-sm); font-weight: 600; font-size: .85rem; padding: .55rem 1.25rem; border-radius: var(--radius); white-space: nowrap; cursor: pointer; border: 1.5px solid transparent; transition: all .15s var(--ease); }
.btn--primary { background: var(--c-brand); color: #fff; border-color: var(--c-brand); }
.btn--primary:hover { background: var(--c-brand-light); border-color: var(--c-brand-light); }
.btn--outline { background: transparent; color: var(--c-text); border-color: var(--c-border); }
.btn--outline:hover { background: var(--c-bg-muted); border-color: var(--c-text-3); }
.btn--gold { background: var(--c-gold); color: #1A1A1A; border-color: var(--c-gold); }
.btn--gold:hover { background: var(--c-gold-light); border-color: var(--c-gold-light); }
.btn--white { background: #fff; color: var(--c-brand); border-color: var(--c-border); }
.btn--white:hover { border-color: var(--c-brand); }
.btn--full { width: 100%; justify-content: center; }
.btn--sm { font-size: .78rem; padding: .35rem .9rem; }
.btn--disabled, .btn:disabled { opacity: .35; cursor: not-allowed; }

/* ── BADGES ── */
.badge { display: inline-flex; align-items: center; font-size: .7rem; font-weight: 600; padding: 2px 8px; border-radius: var(--radius-sm); white-space: nowrap; }
.badge--brand { color: var(--c-brand); background: rgba(139,0,21,.06); }
.badge--gold { color: #7A5E00; background: rgba(212,160,23,.08); }
.badge--green { color: var(--c-green); background: rgba(27,107,43,.06); }
.badge--default { color: var(--c-text-3); background: var(--c-bg-muted); }

/* ── HOME LAYOUT ── */
.home-layout { display: grid; grid-template-columns: 1fr 300px; gap: var(--space-xl); padding-top: var(--space-xl); padding-bottom: var(--space-2xl); align-items: start; }
.home-layout__main { min-width: 0; }
.home-layout__sidebar { display: flex; flex-direction: column; gap: var(--space-lg); position: sticky; top: calc(var(--header-h) + 24px); }
.home-section { margin-bottom: var(--space-xl); }

/* ── CARDS ── */
.module-card { background: var(--c-bg); border-bottom: 1px solid var(--c-border); }
.module-card__header { padding: var(--space-md) 0; display: flex; align-items: center; justify-content: space-between; }
.module-card__title { font-size: .95rem; font-weight: 700; display: flex; align-items: center; gap: var(--space-sm); }
.module-card__title-icon { width: 28px; height: 28px; border-radius: var(--radius); display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; }
.module-card__body { padding: var(--space-md) 0; }
.module-card__footer { padding: var(--space-sm) 0; border-top: 1px solid var(--c-border); }

/* ── FEATURES ── */
.home-welcome { text-align: center; padding: var(--space-xl) 0 var(--space-lg); }
.home-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.feature-card { border: 1px solid var(--c-border); border-radius: var(--radius); padding: var(--space-xl) var(--space-lg); text-align: center; transition: all .2s var(--ease); }
.feature-card:hover { border-color: var(--c-text-3); }
.feature-card__icon { width: 48px; height: 48px; border-radius: var(--radius); margin: 0 auto var(--space-lg); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; background: var(--c-bg-muted); }
.feature-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: var(--space-sm); }
.feature-card__desc { font-size: .85rem; color: var(--c-text-2); line-height: 1.55; }

/* ── ENCUESTAS ── */
.encuesta-item { border-bottom: 1px solid var(--c-border); padding: var(--space-md) 0; }
.encuesta-item__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-sm); }
.encuesta-item__title { font-size: .95rem; font-weight: 700; }
.encuesta-item__body { }
.encuesta-result { display: flex; align-items: center; gap: var(--space-md); padding: var(--space-md) 0; }
.encuesta-result__score { font-size: 1.5rem; font-weight: 800; }

/* ── DEADLINE BANNER ── */
.deadline-banner { display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-sm) var(--space-md); border: 1px solid var(--c-gold); border-radius: var(--radius); font-size: .78rem; color: var(--c-text-2); margin-bottom: var(--space-lg); }
.deadline-banner--closed { border-color: var(--c-brand); color: var(--c-brand); }
.deadline-banner__icon { font-size: 1rem; }

/* ── RANKING TABLE ── */
.ranking-table { width: 100%; font-size: .85rem; }
.ranking-table th { font-size: .7rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--c-text-3); padding: .5rem .75rem; border-bottom: 1px solid var(--c-border); text-align: left; }
.ranking-table td { padding: .5rem .75rem; border-bottom: 1px solid var(--c-border); color: var(--c-text-2); }
.ranking-table tbody tr { transition: background .1s; }
.ranking-table tbody tr:hover td { background: var(--c-bg-muted); }
.ranking-table__pos { font-weight: 700; font-size: .95rem; color: var(--c-text); }
.ranking-table__pos--1 { color: var(--c-gold); }
.ranking-table__pos--2, .ranking-table__pos--3 { color: var(--c-text-2); }
.ranking-table__name { font-weight: 600; color: var(--c-text); }
.ranking-table__pts { font-weight: 700; font-size: 1rem; color: var(--c-brand); }

/* ── ENCUESTAS ── */
.rating-player { display: flex; align-items: center; gap: var(--space-md); padding: .6rem 0; border-bottom: 1px solid var(--c-border); }
.rating-player:last-child { border-bottom: none; }
.rating-player__number { width: 28px; height: 28px; border-radius: 50%; background: var(--c-bg-muted); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; flex-shrink: 0; }
.rating-player__name { font-weight: 600; font-size: .9rem; flex: 1; }
.rating-player__score { font-weight: 700; font-size: 1.1rem; color: var(--c-text-3); min-width: 28px; text-align: center; }
.rating-player__score--rated { color: var(--c-brand); }
.rating-player__stars { display: flex; gap: 3px; }
.rating-player__star { width: 22px; height: 22px; border-radius: var(--radius-sm); background: var(--c-bg-muted); border: 1px solid var(--c-border); cursor: pointer; transition: all .15s; display: flex; align-items: center; justify-content: center; font-size: .6rem; color: var(--c-text-3); }
.rating-player__star:hover { border-color: var(--c-gold); color: var(--c-gold); }
.rating-player__star--active { background: var(--c-gold); border-color: var(--c-gold); color: #1A1A1A; }
.rating-player__mvp { margin-left: var(--space-sm); padding: .2rem .6rem; border: 1px solid var(--c-border); border-radius: var(--radius-sm); font-size: .65rem; color: var(--c-text-3); cursor: pointer; transition: all .15s; }
.rating-player__mvp:hover { border-color: var(--c-brand); color: var(--c-brand); }
.rating-player__mvp--selected { background: var(--c-brand); border-color: var(--c-brand); color: #fff; }

/* ── WIDGETS ── */
.widget { border-bottom: 1px solid var(--c-border); }
.widget__header { padding: var(--space-sm) 0; display: flex; align-items: center; gap: var(--space-sm); }
.widget__header-icon { width: 24px; height: 24px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: .65rem; flex-shrink: 0; font-weight: 700; }
.widget__header-icon--brand { background: rgba(139,0,21,.06); color: var(--c-brand); }
.widget__header-icon--gold { background: rgba(212,160,23,.08); color: #7A5E00; }
.widget__header-icon--green { background: rgba(27,107,43,.06); color: var(--c-green); }
.widget__title { font-size: .82rem; font-weight: 700; }
.widget__body { padding: var(--space-sm) 0; }
.widget__body--flush { padding: 0; }
.widget__footer { padding: var(--space-sm) 0; border-top: 1px solid var(--c-border); }

.match-widget__teams { display: flex; align-items: center; justify-content: space-between; padding: var(--space-md) 0; gap: var(--space-md); }
.match-widget__team { display: flex; flex-direction: column; align-items: center; gap: var(--space-sm); flex: 1; }
.match-widget__crest { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--c-border); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .8rem; color: var(--c-text-2); }
.match-widget__team--home .match-widget__crest { border-color: var(--c-brand); color: var(--c-brand); }
.match-widget__name { font-weight: 600; font-size: .7rem; text-transform: uppercase; text-align: center; line-height: 1.2; }
.match-widget__center { display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0; min-width: 70px; }
.match-widget__score { font-size: 2rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.match-widget__vs { font-size: .6rem; color: var(--c-text-3); text-transform: uppercase; }
.match-widget__date { font-size: .75rem; color: var(--c-text-2); text-align: center; }
.match-widget__time { font-size: 1rem; font-weight: 700; color: var(--c-brand); }
.match-widget__countdown { font-size: .75rem; color: var(--c-text-3); text-align: center; min-height: 1rem; }
.match-widget__stadium { font-size: .75rem; color: var(--c-text-3); text-align: center; }
.match-result { font-size: .75rem; font-weight: 600; }
.match-result--win { color: var(--c-green); }
.match-result--loss { color: var(--c-red); }
.match-result--draw { color: var(--c-orange); }

/* ── STATS ── */
.home-stat { text-align: center; }
.home-stat__val { font-size: 1.5rem; font-weight: 800; line-height: 1; color: var(--c-brand); }
.home-stat__val--gold { color: var(--c-gold); }
.home-stat__lbl { font-size: .7rem; color: var(--c-text-3); text-transform: uppercase; }
.standings-mini { width: 100%; font-size: .78rem; }
.standings-mini th { font-size: .65rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--c-text-3); padding: .4rem .6rem; text-align: center; border-bottom: 1px solid var(--c-border); }
.standings-mini th:nth-child(2) { text-align: left; }
.standings-mini td { padding: .4rem .6rem; border-bottom: 1px solid var(--c-border); color: var(--c-text-2); font-size: .7rem; text-align: center; }
.standings-mini td:nth-child(2) { text-align: left; font-weight: 600; font-size: .78rem; color: var(--c-text); }
.standings-mini__our-team { background: rgba(139,0,21,.03); }
.standings-mini__our-team td:nth-child(2) { color: var(--c-brand); }
.pos-badge { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; font-size: .65rem; font-weight: 700; background: rgba(212,160,23,.1); color: #7A5E00; }

/* ── FORM DOTS ── */
.form-dots { display: flex; gap: 4px; align-items: center; }
.form-dot { width: 8px; height: 8px; border-radius: 50%; }
.form-dot--w { background: var(--c-green); }
.form-dot--d { background: var(--c-orange); }
.form-dot--l { background: var(--c-red); }

/* ── FOOTER ── */
.site-footer { border-top: 1px solid var(--c-border); margin-top: var(--space-3xl); }
.site-footer__inner { max-width: var(--max-w); margin: 0 auto; padding: var(--space-lg) var(--pad-x); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-md); }
.footer-logo { display: flex; align-items: center; gap: var(--space-sm); }
.footer-logo__mark { width: 32px; height: 32px; }
.footer-logo__name { font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--c-text); }
.site-footer__copy { font-size: .78rem; color: var(--c-text-3); }
.site-footer__legal { display: flex; gap: var(--space-lg); }
.site-footer__legal a { font-size: .78rem; color: var(--c-text-3); transition: color .2s; }
.site-footer__legal a:hover { color: var(--c-text); }

/* ── PAGE HEADER ── */
.page-header { padding: var(--space-xl) 0 var(--space-lg); border-bottom: 1px solid var(--c-border); margin-bottom: var(--space-xl); }
.page-header__title { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: var(--space-sm); }
.page-header__desc { color: var(--c-text-2); max-width: 50ch; font-size: .92rem; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .home-layout { grid-template-columns: 1fr; }
  .home-layout__sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .home-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .header-social { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.is-open { display: flex; position: fixed; inset: var(--header-h) 0 0 0; background: rgba(255,255,255,.98); flex-direction: column; padding: var(--space-lg); z-index: 150; overflow-y: auto; border-top: 1px solid var(--c-border); }
  .main-nav.is-open .main-nav__list { flex-direction: column; gap: 0; }
  .main-nav.is-open .main-nav__link { padding: var(--space-md); font-size: 1rem; border-bottom: 1px solid var(--c-border); }
  .home-layout__sidebar { grid-template-columns: 1fr; }
  .home-features { grid-template-columns: 1fr; }
  .rating-player { flex-wrap: wrap; gap: var(--space-sm); }
  .rating-player__stars { order: 3; width: 100%; justify-content: center; }
  .site-footer__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .site-header { height: 72px; }
  .site-logo__mark { width: 56px; height: 56px; }
}
@media (max-width: 480px) {
  .site-header { height: 64px; }
  .site-logo__mark { width: 44px; height: 44px; }
  .match-widget__teams { gap: var(--space-sm); }
  .btn { font-size: .8rem; padding: .45rem 1rem; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }
.js-reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.js-reveal.is-visible { opacity: 1; transform: translateY(0); }
img[data-src] { opacity: 0; transition: opacity .4s; }
img.is-loaded { opacity: 1; }

/* ── COOKIES BANNER ── */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: rgba(17,24,39,.97); color: #fff; border-top: 2px solid var(--c-gold);
  padding: var(--space-md) var(--pad-x); box-shadow: 0 -8px 30px rgba(0,0,0,.25);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text p { color: #E5E7EB; max-width: 860px; margin-bottom: var(--space-sm); font-size: .85rem; line-height: 1.5; }
.cookie-banner__text a { color: var(--c-gold-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.cookie-banner__actions .btn--primary { background: var(--c-gold); color: #111827; }
.cookie-banner__actions .btn--primary:hover { background: var(--c-gold-light); }
.cookie-banner__actions .btn--outline { border-color: #ffffff66; color: #fff; background: transparent; }
.cookie-banner__actions .btn--outline:hover { border-color: #fff; color: #fff; }
.cookie-banner__actions .btn--ghost { color: #C9CDD4; }
.cookie-banner__actions .btn--ghost:hover { color: #fff; }

/* ── COOKIE MODAL ── */
.cookie-modal { position: fixed; inset: 0; z-index: 1100; display: flex; align-items: center; justify-content: center; padding: var(--pad-x); }
.cookie-modal[hidden] { display: none; }
.cookie-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.cookie-modal__panel {
  position: relative; background: var(--c-bg); color: var(--c-text); border-radius: var(--radius-lg);
  max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; padding: var(--space-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.cookie-modal__title { font-size: 1.2rem; margin-bottom: var(--space-sm); }
.cookie-modal__intro { color: var(--c-text-2); font-size: .85rem; margin-bottom: var(--space-lg); }
.cookie-option { border: 1px solid var(--c-border); border-radius: var(--radius); padding: var(--space-md); margin-bottom: var(--space-sm); }
.cookie-option--locked { background: var(--c-bg-muted); }
.cookie-option__label { display: flex; gap: var(--space-sm); cursor: pointer; }
.cookie-option--locked .cookie-option__label { cursor: default; }
.cookie-option__label input { flex-shrink: 0; margin-top: .25rem; width: 18px; height: 18px; accent-color: var(--c-brand); }
.cookie-option--locked .cookie-option__label input { accent-color: var(--c-text-3); }
.cookie-option__text { display: flex; flex-direction: column; gap: 2px; }
.cookie-option__name { font-weight: 600; font-size: .88rem; }
.cookie-option__desc { color: var(--c-text-2); font-size: .78rem; line-height: 1.5; }
.cookie-modal__actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-top: var(--space-lg); justify-content: flex-end; }
.cookie-modal__links { margin-top: var(--space-lg); font-size: .78rem; color: var(--c-text-3); text-align: center; }
.cookie-modal__links a { color: var(--c-brand); text-decoration: underline; }

@media (max-width: 768px) {
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}