:root {
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-dark: #1d4ed8;
  --blue-deep: #0a1628;
  --red: #ef4444;
  --red-live: #dc2626;
  --green: #16a34a;
  --yellow: #fbbf24;
  --gold: #f59e0b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --whatsapp: #22c55e;
  --whatsapp-dark: #15803d;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 8px 32px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 20px 50px rgba(10, 22, 40, 0.18);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --top-bar-height: 78px;
  --container-max: 1040px;
  --container-gutter: 1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-700);
  background: #eef2f7;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container-max), calc(100% - var(--container-gutter) * 2));
  margin-inline: auto;
}

.site-top-fixed,
.site-footer {
  width: 100%;
}

.mobile-quick-nav {
  max-width: 100vw;
}

/* ── Barra superior fija (ticker + logo + compras) ── */
.site-top-fixed {
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 6px 24px rgba(10, 22, 40, 0.15);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* ── Ticker ── */
.news-ticker {
  display: flex;
  align-items: stretch;
  background: var(--blue-deep);
  color: #fff;
  overflow: hidden;
  border-top: 2px solid var(--gold);
}

.ticker-label {
  flex-shrink: 0;
  background: var(--red-live);
  padding: 0.35rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
}

.ticker-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: ticker-scroll 50s linear infinite;
  padding: 0.38rem 0;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-size: 0.84rem;
  font-weight: 600;
  color: #e2e8f0;
}

.ticker-item--narrative {
  color: #fef08a;
  font-weight: 700;
}

.ticker-item:hover {
  color: var(--gold);
  text-decoration: underline;
}

.ticker-sep {
  color: var(--gray-400);
  opacity: 0.4;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Barra DEPORTISANCHEZ: domicilio | logo centro | compras ── */
.store-bar {
  background: var(--white);
  border-bottom: none;
}

.store-bar-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.28rem 0;
  min-height: 50px;
  max-height: 50px;
}

.brand-center {
  justify-self: center;
  display: flex;
  align-items: center;
  height: 46px;
}

.brand-center .brand-logo-full {
  width: auto;
  height: 46px;
  max-height: 46px;
  max-width: min(220px, 36vw);
  object-fit: contain;
}

.brand-location {
  justify-self: start;
  min-width: 0;
  line-height: 1.12;
}

.location-line {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-900);
}

.location-line svg {
  flex-shrink: 0;
  color: var(--blue);
}

.location-municipio {
  margin: 0.04rem 0 0 0.85rem;
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.location-phone {
  margin: 0.02rem 0 0 0.85rem;
  font-size: 0.62rem;
  color: var(--gray-500);
  font-weight: 600;
}

.phone-wa-link {
  color: var(--whatsapp-dark);
  font-weight: 700;
}

.phone-wa-link:hover {
  text-decoration: underline;
}

.phone-sep {
  margin: 0 0.2rem;
  opacity: 0.6;
}

.phone-extra {
  color: var(--gray-500);
  font-weight: 600;
}

/* Idioma + región compactos junto al WhatsApp (izquierda) */
.store-header-tools {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  margin: 0.12rem 0 0 0.85rem;
  flex-wrap: wrap;
}

.header-tool-select {
  font-family: inherit;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.14rem 0.28rem;
  border: 1px solid var(--gray-200);
  border-radius: 5px;
  background: #fff;
  color: var(--gray-800);
  max-width: 5.2rem;
  cursor: pointer;
  line-height: 1.2;
}

.header-tool-select--region {
  max-width: 6.5rem;
}

.header-tool-select:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

@media (max-width: 820px) {
  .store-header-tools {
    margin-left: 0;
    justify-content: center;
  }
}

.store-cta-compact {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #14532d, #166534);
  padding: 0.28rem 0.3rem 0.28rem 0.55rem;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 100%;
}

.store-cta-copy {
  min-width: 0;
}

.store-cta-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  line-height: 1.1;
  white-space: nowrap;
}

.store-cta-copy p {
  margin: 0.05rem 0 0;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.15;
  white-space: nowrap;
}

.btn-store {
  padding: 0.38rem 0.7rem;
  font-size: 0.72rem;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: none;
}

.btn-store-text {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .store-cta-copy p {
    white-space: normal;
    max-width: 120px;
  }
}

@media (max-width: 820px) {
  .store-bar-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    max-height: none;
    padding: 0.4rem 0;
    gap: 0.4rem;
    text-align: center;
  }

  .brand-center {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    height: 42px;
  }

  .brand-center .brand-logo-full {
    height: 42px;
    max-height: 42px;
    max-width: min(240px, 70vw);
    margin: 0 auto;
  }

  .brand-location {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    width: 100%;
  }

  .location-line {
    justify-content: center;
    flex-wrap: wrap;
  }

  .location-municipio,
  .location-phone {
    margin-left: 0;
  }

  .store-cta-compact {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
    width: min(100%, 340px);
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .btn-store-text {
    display: none;
  }

  .btn-store {
    padding: 0.4rem 0.55rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
  background: #4ade80;
}

/* ── Section titles ── */
.section-title-row {
  margin-bottom: 1rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 800;
  color: var(--blue-deep);
}

.section-sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}

.live-pulse {
  width: 10px;
  height: 10px;
  background: var(--red-live);
  border-radius: 50%;
  animation: pulse-dot 1.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6);
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

/* ── Momentos en vivo (carousel) ── */
.momentos-section {
  padding: 0;
}

.momentos-scroll-wrap {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.5rem;
}

.momentos-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.25rem 0;
}

.momento-card {
  position: relative;
  flex-shrink: 0;
  width: min(300px, 78vw);
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}

.momento-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.momento-card:hover {
  transform: scale(1.02);
}

.momento-card--noimg {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
}

.momento-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.momento-tag--live {
  background: var(--red-live);
  animation: pulse 1.5s infinite;
}

.momento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  z-index: 1;
}

.momento-overlay h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.momento-cta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── Contador arriba (full width) ── */
.countdown-top {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.countdown-top-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.93) 0%, rgba(30, 64, 175, 0.82) 100%),
    url('/assets/mundial/stadium.jpg') center/cover no-repeat;
}

.countdown-top.is-live .countdown-top-bg {
  background:
    linear-gradient(135deg, rgba(20, 83, 45, 0.92) 0%, rgba(30, 64, 175, 0.85) 100%),
    url('/assets/mundial/azteca.jpg') center/cover no-repeat;
}

.countdown-top-inner {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 1.35rem 0 1.5rem;
}

.countdown-hero-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 300px) auto;
  align-items: center;
  gap: 1.25rem;
}

.hero-stadium {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 150px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stadium-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-stadium-overlay {
  position: relative;
  z-index: 1;
  padding: 0.85rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.35) 70%, transparent 100%);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-stadium-label {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.hero-stadium-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-stadium-city,
.hero-stadium-next {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  opacity: 0.9;
}

.btn-hero-stadium {
  margin-top: 0.55rem;
  align-self: flex-start;
  border: none;
  cursor: pointer;
  background: var(--gold);
  color: var(--blue-deep);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  transition: transform 0.15s, filter 0.15s;
}

.btn-hero-stadium:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.hero-stadium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.btn-hero-stadium--link {
  text-decoration: none;
  display: inline-block;
}

.btn-hero-stadium--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-hero-stadium--ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  filter: none;
}

.hero-stadium-overlay--mx .hero-stadium-label {
  color: #86efac;
}

.countdown-top-head {
  text-align: left;
  flex: 1;
  min-width: 200px;
}

.countdown-top-head h1 {
  margin: 0 0 0.2rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.countdown-top-head p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.92rem;
}

.countdown-wrap {
  flex-shrink: 0;
}

.countdown-top .countdown-grid {
  gap: 0.55rem;
}

.countdown-top .countdown-unit {
  padding: 0.65rem 0.5rem;
  min-width: 64px;
}

.countdown-top .countdown-unit strong {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

.countdown-note {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  opacity: 0.75;
  text-align: left;
}

/* ── Spotlight estrella + calendario preview ── */
.calendar-showcase {
  margin-bottom: 1.25rem;
}

.calendar-showcase-grid {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}

.star-spotlight {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}

.star-spotlight:hover {
  transform: scale(1.01);
}

.star-spotlight-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: top center;
}

.star-spotlight-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: #fff;
}

.star-spotlight-tag {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.star-spotlight-overlay h2 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.star-spotlight-overlay p {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  opacity: 0.88;
  line-height: 1.35;
}

.star-spotlight-cta {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
}

.calendar-preview-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}

.calendar-preview-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.calendar-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.55rem;
  flex: 1;
}

.cal-preview-card {
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
}

.cal-preview-date {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue);
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.cal-preview-teams {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-900);
}

.cal-preview-teams em {
  font-style: normal;
  font-size: 0.68rem;
  color: var(--gray-400);
  font-weight: 600;
}

.cal-preview-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  color: var(--gray-500);
  font-weight: 600;
}

.calendar-preview-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.calendar-preview-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

.calendar-preview-empty {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.cal-preview-card--img {
  position: relative;
  min-height: 130px;
  padding: 0;
  border: none;
  overflow: hidden;
}

.cal-preview-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cal-preview-overlay {
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.45) 100%);
  padding: 0.65rem 0.75rem;
  height: 100%;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.cal-preview-card--img .cal-preview-date {
  color: var(--gold);
}

.cal-preview-card--img .cal-preview-teams,
.cal-preview-card--img .cal-preview-meta {
  color: #fff;
}

.match-tv-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.35rem;
}

.match-tv-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  padding: 0.12rem 0.28rem;
  line-height: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease;
}

.match-tv-logo:hover {
  transform: scale(1.06);
}

.match-tv-logo img {
  display: block;
  width: auto;
  height: 18px;
  max-width: 52px;
  object-fit: contain;
}

.tv-networks-bar {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.tv-networks-bar--compact .tv-networks-label {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
}

.tv-networks-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.tv-network-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 0.2rem 0.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tv-network-logo:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.tv-network-logo img {
  display: block;
  height: 22px;
  width: auto;
  max-width: 56px;
  object-fit: contain;
}

.federation-links-bar {
  margin-top: 0.15rem;
  padding-top: 0.35rem;
  border-top: 1px dashed var(--gray-200);
}

.federation-logo img {
  height: 20px;
}

.quick-link-thumb--svg {
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 4px;
}

.mexico-focus-head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  min-width: 0;
  flex: 1;
  max-width: 420px;
}

@media (max-width: 720px) {
  .mexico-focus-head-right {
    align-items: stretch;
    max-width: none;
    width: 100%;
  }

  .btn-mexico-main {
    text-align: center;
  }
}

/* Ocultar barra amarilla de Google Translate */
#google_translate_element,
.goog-te-banner-frame,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-te-gadget {
  font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
  color: #e2e8f0;
}

/* ── Galería de estadios ── */
.stadium-gallery-section {
  margin-bottom: 0;
}

.stadium-scroll-wrap {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.35rem;
}

.stadium-gallery {
  display: flex;
  gap: 0.85rem;
  width: max-content;
}

.stadium-card {
  flex-shrink: 0;
  width: min(220px, 70vw);
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  scroll-snap-align: start;
  transition: transform 0.2s;
}

.stadium-card:hover {
  transform: translateY(-3px);
}

.stadium-card-img {
  height: 120px;
  position: relative;
  overflow: hidden;
}

.stadium-card-photo {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.stadium-card-city {
  position: absolute;
  bottom: 0.4rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.stadium-card-body {
  padding: 0.65rem 0.75rem;
}

.stadium-card-body h4 {
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.stadium-card-body p {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  color: var(--gray-500);
}

.stadium-card-links {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.stadium-link {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
  background: var(--gray-100);
  color: var(--blue-dark);
}

.stadium-link--3d {
  background: #dbeafe;
  color: var(--blue-dark);
}

.stadium-link:hover {
  background: var(--blue);
  color: #fff;
}

.stadium-gallery-empty {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.match-venue {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.65rem;
}

.match-venue-img {
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.match-venue-3d {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.match-venue-3d:hover {
  text-decoration: underline;
}

.footer-copy #last-updated {
  font-weight: 600;
  color: var(--gold);
}

/* ── Calendario estilizado por día ── */
.matches-section--cal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.matches-list--cal {
  gap: 1.25rem;
}

.calendar-day-group {
  border-top: 2px solid var(--gray-100);
  padding-top: 0.85rem;
}

.calendar-day-group:first-child {
  border-top: none;
  padding-top: 0;
}

.calendar-day-head {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: capitalize;
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calendar-day-head::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.calendar-day-matches {
  display: grid;
  gap: 0.65rem;
}

.calendar-day-matches--compact {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.55rem;
}

.match-card--cal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 1rem;
  padding: 0.85rem 1rem;
  align-items: start;
}

.match-card-cal-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.65rem;
  min-width: 72px;
  text-align: center;
}

.match-cal-hour {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.match-card--cal .match-stage {
  font-size: 0.6rem;
  margin-top: 0.2rem;
}

.match-card--cal .match-card-top {
  grid-column: 2;
  margin-bottom: 0.35rem;
  justify-content: flex-end;
}

.match-card--cal .match-preview {
  grid-column: 2;
}

.match-card--cal .match-venue,
.match-card--cal .match-watch {
  grid-column: 2;
}

@media (max-width: 700px) {
  .calendar-showcase-grid {
    grid-template-columns: 1fr;
  }

  .countdown-hero-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-stadium {
    order: 2;
    width: 100%;
    max-width: min(380px, 92vw);
    margin-left: auto;
    margin-right: auto;
    min-height: 210px;
  }

  .hero-stadium-bg {
    object-fit: cover;
    object-position: center center;
  }

  .hero-stadium-overlay {
    min-height: 210px;
    text-align: center;
    align-items: center;
  }

  .hero-stadium-overlay--mx {
    align-items: center;
  }

  .hero-stadium-actions {
    justify-content: center;
    width: 100%;
  }

  .countdown-wrap {
    order: 3;
    width: 100%;
    max-width: min(380px, 92vw);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .countdown-top-head {
    order: 1;
    text-align: center;
    width: 100%;
  }

  .countdown-top .countdown-grid {
    width: 100%;
  }

  .btn-hero-stadium {
    align-self: center;
  }

  .countdown-note {
    text-align: center;
  }

  .match-card--cal {
    grid-template-columns: 1fr;
  }

  .match-card-cal-time {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .match-card--cal .match-card-top,
  .match-card--cal .match-preview,
  .match-card--cal .match-venue,
  .match-card--cal .match-watch {
    grid-column: 1;
  }
}

/* ── Sidebar derecha ── */
.dashboard-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 960px) {
  .dashboard-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
  }

  .dashboard-sidebar {
    position: sticky;
    top: calc(var(--top-bar-height) + 0.75rem);
    max-height: calc(100vh - var(--top-bar-height) - 1.5rem);
    overflow-y: auto;
    scrollbar-width: thin;
  }
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  margin-bottom: 1rem;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.sidebar-widget h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.sidebar-widget-sub {
  margin: 0.2rem 0 0.85rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.stars-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-stars .stars-sidebar-list {
  max-height: 17rem;
  overflow-y: auto;
  scrollbar-width: thin;
}

.star-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.star-link:hover {
  background: #eff6ff;
  border-color: var(--blue-light);
  transform: translateX(3px);
}

.star-link-photo {
  position: relative;
  flex-shrink: 0;
}

.star-link-photo > img:first-child {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.star-link-flag {
  position: absolute;
  bottom: -2px;
  right: -4px;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.star-link-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.star-link-body strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--blue-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.star-link-body span {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 600;
}

.star-link-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.6;
}

.star-link:hover .star-link-arrow {
  opacity: 1;
}

.quick-links {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s;
}

.quick-link:hover {
  background: var(--blue-deep);
  color: #fff;
}

.quick-link-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.quick-link:hover .quick-link-thumb {
  opacity: 0.92;
}

.stars-empty {
  font-size: 0.82rem;
  color: var(--gray-500);
  text-align: center;
  margin: 0;
}

/* ── Dashboard grid ── */
.dashboard {
  padding: 0 0 2rem;
}

.dashboard-main {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.dashboard-main > section {
  margin: 0;
}
.wc-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--blue-deep);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.countdown-unit strong {
  display: block;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
}

.countdown-unit span {
  font-size: 0.68rem;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 0.25rem;
  display: block;
}

.countdown-note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  opacity: 0.75;
  text-align: center;
}

.countdown-top .agenda-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.countdown-top .agenda-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.agenda-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.agenda-list {
  display: grid;
  gap: 0.75rem;
}

.agenda-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.agenda-card.is-live {
  border-color: var(--gold);
}

.agenda-time {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-bottom: 0.35rem;
}

.agenda-teams {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.team-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.team-row img {
  border-radius: 2px;
  object-fit: cover;
}

.agenda-vs {
  opacity: 0.6;
  font-size: 0.8rem;
}

.agenda-venue {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  opacity: 0.75;
}

.live-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  background: var(--red-live);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

.agenda-empty {
  margin: 0;
  opacity: 0.85;
}

/* ── Stadium filter ── */
.filters-section {
  margin-bottom: 1rem;
}

.stadium-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue-deep);
}

.stadium-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
}

.stadium-select:focus {
  outline: none;
  border-color: var(--blue);
}

/* ── Matches ── */
.matches-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.matches-head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.matches-count {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 600;
}

.matches-list {
  display: grid;
  gap: 1rem;
}

.match-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.2s;
}

.match-card:hover {
  box-shadow: var(--shadow-lg);
}

.match-card.is-live {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.match-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  gap: 0.5rem;
}

.match-stage {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.match-status {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.status-scheduled {
  background: var(--gray-100);
  color: var(--gray-500);
}

.status-live {
  background: #dcfce7;
  color: var(--green);
}

.status-finished {
  background: var(--gray-100);
  color: var(--gray-500);
}

.match-preview {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.match-team strong {
  font-size: 0.88rem;
}

.match-team img {
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.flag-placeholder {
  width: 48px;
  height: 36px;
  background: var(--gray-200);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.match-time {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.match-score {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.match-score span {
  opacity: 0.35;
}

.match-venue {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--gray-500);
  text-align: center;
}

.match-watch {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--gray-200);
}

.match-watch--stadium {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: none;
  padding: 0;
  margin-top: 0.85rem;
}

.match-watch-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
}

.match-watch-inner {
  position: relative;
  z-index: 1;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.82) 0%, rgba(30, 64, 175, 0.72) 100%);
}

.match-watch--stadium .watch-label {
  color: #e2e8f0;
}

.match-watch--stadium .btn-watch {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.match-watch--stadium .btn-watch:hover {
  background: #fff;
  color: var(--blue-deep);
}

.match-venue-btn {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

.match-venue-btn:hover {
  text-decoration: underline;
}

.watch-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.watch-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.btn-watch {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  background: var(--gray-100);
  border-radius: 999px;
  color: var(--blue-dark);
}

.btn-watch:hover {
  background: var(--blue);
  color: #fff;
}

.btn-watch-main {
  display: block;
  text-align: center;
  background: linear-gradient(90deg, var(--red-live), #ea580c);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-watch-main:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
}

/* ── Press sidebar ── */
.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-widget.press-widget {
  padding-bottom: 0.85rem;
}

.press-widget h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.press-tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.press-tab {
  flex: 1;
  padding: 0.45rem 0.35rem;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  color: var(--gray-500);
}

.press-tab.is-active {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #fff;
}

.press-panel {
  display: none;
}

.press-panel.is-active {
  display: block;
}

.press-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.press-item a {
  display: flex;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}

.press-item:last-child a {
  border-bottom: none;
}

.press-item a:hover .press-title {
  color: var(--blue);
}

.press-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.press-thumb--empty {
  display: grid;
  place-items: center;
  background: var(--gray-100);
  font-size: 1.25rem;
}

.press-title {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--gray-700);
}

/* ── Footer ── */
.site-footer {
  background: var(--blue-deep);
  color: #94a3b8;
  padding: 1.35rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(160px, 1.1fr) minmax(0, 2fr) minmax(170px, 1fr);
  align-items: center;
  gap: 1rem 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  min-width: 0;
}

.footer-logo-link {
  display: block;
  line-height: 0;
}

.footer-logo {
  display: block;
  width: min(260px, 100%);
  height: auto;
  filter: brightness(1.08);
}

.footer-logo-accent {
  display: block;
  width: 100%;
  max-width: 250px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ffc107 0%, #ffe082 55%, #ffc107 100%);
}

.footer-center {
  text-align: center;
  min-width: 0;
}

.footer-center p {
  margin: 0.18rem 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.footer-copy {
  opacity: 0.72;
}

.footer-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  min-width: 0;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  border: none;
}

.footer-stats-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.footer-stats-link:hover {
  background: rgba(59, 130, 246, 0.2);
  color: #fff;
  border-color: rgba(147, 197, 253, 0.5);
}

.footer-info-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.footer-chosen-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #000;
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  opacity: 0.9;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.footer-chosen-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-chosen-logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: 118px;
  object-fit: contain;
}

@media (max-width: 860px) {
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1.1rem;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    width: min(280px, 92vw);
  }

  .footer-logo-accent {
    max-width: min(280px, 92vw);
  }

  .footer-side {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-info {
    align-items: center;
  }
}

/* ── Mobile ── */
@media (max-width: 959px) {
  .dashboard-sidebar {
    order: -1;
  }

  .match-preview {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .match-center {
    order: -1;
  }
}


/* ── Modal sede / estadio ── */
.stadium-modal {
  border: none;
  border-radius: var(--radius);
  padding: 0;
  position: relative;
  max-width: min(640px, 94vw);
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.stadium-modal::backdrop {
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(4px);
}

.stadium-modal-content {
  max-height: 90vh;
  overflow-y: auto;
}

.stadium-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 5;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.stadium-modal-hero {
  position: relative;
}

.stadium-modal-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.stadium-modal-hero-text {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: #fff;
}

.stadium-modal-badge {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
}

.stadium-modal-hero-text h2 {
  margin: 0.25rem 0 0.15rem;
  font-size: 1.35rem;
}

.stadium-modal-hero-text p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.92;
}

.stadium-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.15rem 0.5rem;
}

.btn-stadium-3d,
.btn-stadium-map,
.btn-stadium-filter {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--blue-deep);
  cursor: pointer;
  text-decoration: none;
}

.btn-stadium-filter {
  background: var(--blue-deep);
  color: #fff;
  border-color: var(--blue-deep);
}

.stadium-modal-matches {
  padding: 0.75rem 1.15rem 1.25rem;
}

.stadium-modal-matches h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--blue-deep);
}

.stadium-modal-matches-sub {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.stadium-match-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stadium-match-item {
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

.stadium-match-date {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.stadium-match-teams {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.stadium-match-teams em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--gray-400);
}

.stadium-match-stage {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  color: var(--gray-500);
  font-weight: 600;
}

.stadium-modal-more {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--gray-500);
}

body.modal-open {
  overflow: hidden;
}

/* ── Enfoque México / Selección ── */
.mexico-focus {
  padding: 0.65rem 0 0.75rem;
  background: linear-gradient(180deg, #ecfdf5 0%, #f8fafc 55%, transparent 100%);
  border-bottom: 1px solid var(--gray-100);
}

.mexico-focus > .mexico-focus-head,
.mexico-focus > .mexico-opening-row,
.mexico-focus > .mexico-lineup-card,
.mexico-focus > .mexico-matches-block {
  width: min(var(--container-max), calc(100% - var(--container-gutter) * 2));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-gutter);
  padding-right: var(--container-gutter);
}

.mexico-opening-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 0.85rem;
  align-items: stretch;
  margin-bottom: 0.85rem;
}

.mexico-opening-row .mexico-opening-card {
  margin-bottom: 0;
  height: 100%;
}

.comentaristas-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  border-top: 4px solid var(--blue);
  display: flex;
  flex-direction: column;
  max-height: 420px;
  overflow-y: auto;
}

.comentaristas-panel-head {
  margin-bottom: 0.65rem;
  flex-shrink: 0;
}

.comentaristas-panel-head h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  color: var(--blue-deep);
}

.comentaristas-panel-head p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--gray-500);
  line-height: 1.35;
}

.comentaristas-group {
  margin-bottom: 0.55rem;
}

.comentaristas-group-title {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.comentaristas-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.comentarista-item {
  margin: 0;
}

.comentarista-link {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  padding: 0.45rem 0.5rem;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: background 0.15s, border-color 0.15s;
}

.comentarista-link:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.comentarista-platform {
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.4;
}

.comentarista-body {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.comentarista-body strong {
  font-size: 0.78rem;
  color: var(--gray-900);
  line-height: 1.25;
}

.comentarista-meta {
  font-size: 0.65rem;
  color: var(--gray-500);
  font-weight: 600;
  line-height: 1.3;
}

.comentarista-cta {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--blue);
  margin-top: 0.1rem;
}

.comentaristas-disclaimer {
  margin: 0.55rem 0 0;
  padding-top: 0.55rem;
  border-top: 1px solid var(--gray-100);
  font-size: 0.58rem;
  color: var(--gray-400);
  line-height: 1.35;
  flex-shrink: 0;
}

.mexico-focus-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.mexico-focus-badge {
  display: inline-block;
  background: #059669;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.mexico-focus-head h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: var(--blue-deep);
}

.mexico-focus-sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray-500);
}

.btn-mexico-main {
  align-self: center;
  background: linear-gradient(90deg, #059669, #047857);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
}

.btn-mexico-main:hover {
  filter: brightness(1.06);
}

.mexico-opening-card {
  display: flex;
  gap: 1rem;
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.mexico-opening-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.mexico-opening-live {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.mexico-opening-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.mexico-opening-time {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
}

.mexico-opening-time strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.mexico-opening-desc {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  opacity: 0.88;
}

.mexico-show-countdown,
.mexico-show-live {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: #bbf7d0;
}

.mexico-lineup-card {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  border-left: 5px solid #059669;
}

.mexico-lineup-photo {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
}

.mexico-lineup-body {
  padding: 1rem 1.1rem 1rem 0;
}

.mexico-lineup-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--blue-deep);
}

.mexico-lineup-body p {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: var(--gray-500);
}

.mexico-matches-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--blue-deep);
}

.mexico-matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
}

.mexico-match-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 200px;
  box-shadow: var(--shadow);
}

.mexico-match-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mexico-match-overlay {
  position: relative;
  z-index: 1;
  padding: 1rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.94) 0%, rgba(10, 22, 40, 0.5) 55%, rgba(10, 22, 40, 0.25) 100%);
  color: #fff;
}

.mexico-match-date {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
}

.mexico-match-date small {
  font-weight: 600;
  opacity: 0.85;
}

.mexico-match-stage {
  display: block;
  font-size: 0.65rem;
  opacity: 0.85;
  margin-top: 0.15rem;
}

.mexico-match-teams {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.5rem 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.mexico-match-teams em {
  font-style: normal;
  font-size: 0.72rem;
  opacity: 0.7;
}

.mexico-match-venue {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  opacity: 0.9;
}

.mexico-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.mexico-link-row--compact {
  margin-top: auto;
}

.mexico-link-chip {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.mexico-link-chip:hover {
  background: #fff;
  color: var(--blue-deep);
}

.mexico-link-chip--primary {
  background: #059669;
  border-color: #059669;
  color: #fff;
}

.mexico-link-chip--primary:hover {
  background: #047857;
  color: #fff;
}

.mexico-stadium-btn {
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--blue-deep);
  border: none;
  cursor: pointer;
}

.mexico-stadium-btn:hover {
  filter: brightness(1.05);
}

@media (max-width: 900px) {
  .mexico-opening-row {
    grid-template-columns: 1fr;
  }

  .comentaristas-panel {
    max-height: none;
  }
}

@media (max-width: 700px) {
  .star-spotlight {
    max-width: min(380px, 92vw);
    margin-left: auto;
    margin-right: auto;
  }

  .star-spotlight-img {
    object-position: center center;
  }

  .mexico-lineup-card {
    grid-template-columns: 1fr;
  }

  .mexico-lineup-photo {
    min-height: 120px;
  }

  .mexico-lineup-body {
    padding: 0 1rem 1rem;
  }

  .mexico-opening-card {
    flex-direction: column;
  }
}

/* ── Partidos de hoy + tarjetas inteligentes ── */
.today-matches-section {
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}

.today-matches-section--hero {
  padding-top: 0.5rem;
  margin-bottom: 0.35rem;
}

/* ── Page shell: laterales + núcleo central ── */
.page-shell {
  display: grid;
  grid-template-columns: minmax(148px, 172px) minmax(0, 1fr) minmax(148px, 172px);
  gap: 0.65rem;
  width: min(1280px, calc(100% - var(--container-gutter) * 2));
  max-width: 100%;
  margin: 0 auto;
  align-items: start;
}

.page-core {
  min-width: 0;
}

.page-rail {
  position: sticky;
  top: calc(var(--top-bar-height, 100px) + 0.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: calc(100vh - var(--top-bar-height, 100px) - 1rem);
  overflow-y: auto;
  scrollbar-width: thin;
}

.rail-widget {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 0.65rem 0.6rem;
  box-shadow: var(--shadow-sm);
}

.rail-widget-title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.rail-widget-sub {
  margin: 0.12rem 0 0.45rem;
  font-size: 0.65rem;
  color: var(--gray-500);
}

.rail-tv-list,
.rail-link-list {
  list-style: none;
  margin: 0.45rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rail-tv-list a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.4rem;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  color: var(--gray-800);
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.25;
}

.rail-tv-list a:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.rail-tv-list img {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.rail-link-list a {
  display: block;
  padding: 0.32rem 0.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--blue-dark);
  text-decoration: none;
}

.rail-link-list a:hover {
  background: var(--gray-50);
  text-decoration: underline;
}

.rail-stats-link {
  display: block;
  margin-top: 0.4rem;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
}

.rail-stats-link:hover {
  background: rgba(59, 130, 246, 0.18);
}

.rail-upcoming-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rail-upcoming-item {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.38rem 0.42rem;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  font-size: 0.68rem;
  line-height: 1.25;
  transition: background 0.15s, border-color 0.15s;
}

.rail-upcoming-item:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.rail-upcoming-date {
  font-weight: 700;
  color: var(--gray-500);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.rail-upcoming-teams {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.rail-upcoming-empty {
  margin: 0;
  font-size: 0.68rem;
  color: var(--gray-500);
}

.rail-widget--press .press-tabs--rail {
  margin-top: 0.4rem;
}

.rail-widget--press .press-tab {
  font-size: 0.62rem;
  padding: 0.28rem 0.45rem;
}

.rail-widget--press .press-list {
  max-height: 220px;
  overflow-y: auto;
}

.rail-widget--press .press-item a {
  font-size: 0.66rem;
}

.rail-widget--press .press-thumb {
  width: 40px;
  height: 40px;
}

.page-rail .star-link {
  padding: 0.35rem 0.25rem;
}

.page-rail .star-link-photo {
  width: 40px;
  height: 40px;
}

.page-rail .star-link-img {
  width: 40px;
  height: 40px;
}

@media (max-width: 1080px) {
  .page-shell {
    grid-template-columns: 1fr;
    width: min(var(--container-max), calc(100% - var(--container-gutter) * 2));
  }

  .page-rail {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .page-rail--left,
  .page-rail--right {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.55rem;
  }

  .page-rail--left {
    order: 2;
  }

  .page-core {
    order: 1;
  }

  .page-rail--right {
    order: 3;
  }
}

/* ── Comentaristas portada (entre banner y cobertura) ── */
.comentaristas-portada {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
}

.comentaristas-portada-inner {
  padding: 0.55rem 0.65rem 0.6rem;
}

.comentaristas-portada-head {
  margin-bottom: 0.4rem;
}

.comentaristas-portada-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.comentaristas-portada-sub {
  margin: 0.12rem 0 0;
  font-size: 0.66rem;
  color: var(--gray-500);
}

.comentaristas-portada-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.35rem;
}

.comentarista-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.38rem 0.45rem;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  min-height: 100%;
}

.comentarista-chip:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.comentarista-chip-icon {
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.3;
}

.comentarista-chip-body {
  display: flex;
  flex-direction: column;
  gap: 0.06rem;
  min-width: 0;
}

.comentarista-chip-body strong {
  font-size: 0.72rem;
  color: var(--gray-900);
  line-height: 1.25;
}

.comentarista-chip-body span {
  font-size: 0.62rem;
  color: var(--gray-500);
  line-height: 1.25;
}

@media (max-width: 640px) {
  .comentaristas-portada-list {
    grid-template-columns: 1fr;
  }
}

.inauguration-banner {
  margin-bottom: 0;
}

/* ── Portada: prensa + banner izq | posiciones der | cobertura abajo ── */
.portada-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(248px, 290px);
  grid-template-rows: auto auto auto;
  gap: 0.35rem;
  align-items: start;
  margin-bottom: 0.35rem;
}

.portada-top-left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  min-height: 0;
}

.portada-inauguration {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.portada-sidebar {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: start;
}

.portada-main {
  grid-column: 1;
  grid-row: 3;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.press-rss-panel {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: 230px;
  padding: 0.38rem 0.45rem 0.3rem;
  overflow: hidden;
}

.press-rss-head {
  flex-shrink: 0;
  margin-bottom: 0.22rem;
}

.press-rss-title-main {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ds-navy, #0b1f3f);
  display: flex;
  align-items: center;
  gap: 0.28rem;
}

.press-rss-sub {
  margin: 0.08rem 0 0;
  font-size: 0.62rem;
  color: #5c6478;
  line-height: 1.2;
}

.press-rss-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: #2a3550 #e8ecf3;
}

.press-rss-scroll::-webkit-scrollbar {
  width: 7px;
}

.press-rss-scroll::-webkit-scrollbar-track {
  background: #e8ecf3;
  border-radius: 8px;
}

.press-rss-scroll::-webkit-scrollbar-thumb {
  background: #2a3550;
  border-radius: 8px;
}

.press-rss-item {
  padding: 0.22rem 0;
  border-bottom: 1px solid rgba(11, 31, 63, 0.06);
}

.press-rss-item:last-child {
  border-bottom: none;
}

.press-rss-item-head {
  display: flex;
  flex-direction: column;
  gap: 0.04rem;
}

.press-rss-source {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ds-red, #c8102e);
  line-height: 1.15;
}

.press-rss-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.22;
  color: var(--ds-navy, #0b1f3f);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-rss-desc {
  margin: 0.1rem 0 0.06rem;
  font-size: 0.66rem;
  line-height: 1.28;
  color: #4a5568;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-rss-link {
  display: inline-block;
  margin-top: 0.06rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: #3d4f6f;
  text-decoration: none;
  line-height: 1.2;
}

.press-rss-link:hover {
  color: var(--ds-red, #c8102e);
  text-decoration: underline;
}

.press-rss-foot {
  flex-shrink: 0;
  padding-top: 0.18rem;
  border-top: 1px solid rgba(11, 31, 63, 0.06);
}

.press-rss-status {
  font-size: 0.58rem;
  color: #6b7280;
  line-height: 1.2;
}

.press-rss-item--skeleton {
  min-height: 4.5rem;
  background: linear-gradient(90deg, #f0f3f8 25%, #e4e9f2 50%, #f0f3f8 75%);
  background-size: 200% 100%;
  animation: press-rss-shimmer 1.2s ease-in-out infinite;
  border-radius: 6px;
  margin-bottom: 0.35rem;
}

@keyframes press-rss-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.portada-sidebar {
  position: sticky;
  top: calc(var(--top-bar-height, 100px) + 0.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  max-height: calc(100vh - var(--top-bar-height, 100px) - 1rem);
  overflow-y: auto;
  scrollbar-width: thin;
}

.portada-standings .groups-panel {
  margin: 0;
}

.portada-standings .groups-panel-tables {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.portada-standings .group-block-title {
  font-size: 0.72rem;
}

.portada-standings .group-table {
  font-size: 0.68rem;
}

.portada-standings .group-table th,
.portada-standings .group-table td {
  padding: 0.28rem 0.2rem;
}

.portada-standings .grp-team span {
  font-size: 0.68rem;
}

.portada-countdown .countdown-inline-card {
  padding: 0.55rem 0.45rem;
}

.today-matches-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

@media (max-width: 900px) {
  .portada-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.45rem;
  }

  .portada-top-left {
    grid-column: 1;
    grid-row: 2;
  }

  .press-rss-panel {
    max-height: 210px;
  }

  .portada-sidebar {
    grid-column: 1;
    grid-row: 1;
    position: static;
  }

  .portada-main {
    grid-column: 1;
    grid-row: 4;
  }

  .comentaristas-portada {
    grid-column: 1;
    grid-row: 3;
  }

  .portada-standings .groups-panel-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
  }
}

.inauguration-banner[hidden] {
  display: none;
}

.inauguration-banner-inner {
  background: linear-gradient(135deg, #0b3d2e 0%, #14532d 45%, #166534 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #ecfdf5;
  box-shadow: 0 10px 32px rgba(11, 61, 46, 0.35);
}

.inauguration-banner-head {
  margin-bottom: 0.75rem;
}

.inauguration-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #86efac;
  margin-bottom: 0.35rem;
}

.inauguration-live .live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse-dot 1.4s ease infinite;
}

.inauguration-title {
  margin: 0;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.inauguration-schedule {
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.inauguration-schedule li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  font-size: 0.88rem;
  color: #d1fae5;
}

.inauguration-schedule strong {
  color: #fff;
  font-weight: 800;
  min-width: 5.5rem;
}

.inauguration-schedule--match strong {
  color: #fde047;
}

.inauguration-banner .match-broadcast {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.75rem;
}

.inauguration-banner .match-broadcast-label {
  color: #bbf7d0;
}

.inauguration-banner .broadcast-chip {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.inauguration-banner .broadcast-chip:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #86efac;
}

.countdown-top--compact {
  padding: 1.25rem 0 1.5rem;
}

.countdown-top--compact .countdown-top-head h1 {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
}

.countdown-top--compact .countdown-hero-row {
  gap: 1rem;
}

.match-broadcast {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
}

.match-broadcast-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 0.02em;
}

.match-broadcast-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.broadcast-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue-deep);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.broadcast-chip img {
  width: 22px;
  height: 14px;
  object-fit: contain;
}

.broadcast-chip em {
  font-style: normal;
  opacity: 0.55;
  font-size: 0.75rem;
}

.broadcast-chip:hover {
  background: #eff6ff;
  border-color: var(--blue);
  color: var(--blue);
}

.today-matches-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.today-matches-title {
  margin: 0 0 0.2rem;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  color: var(--blue-deep);
}

.today-matches-sub {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gray-500);
}

.today-matches-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.today-control {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.today-control select {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-900);
  min-width: 140px;
}

.sports-portal-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: linear-gradient(90deg, #eff6ff, #ecfdf5);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.85rem;
  margin-bottom: 0.75rem;
}

.sports-portal-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.sports-portal-link {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue);
}

.sports-portal-link:hover {
  text-decoration: underline;
}

.today-matches-list {
  display: grid;
  gap: 0.75rem;
}

.today-empty {
  margin: 0;
  padding: 1.25rem;
  text-align: center;
  color: var(--gray-500);
  background: var(--gray-50);
  border-radius: var(--radius);
}

.match-card--smart {
  position: relative;
}

.match-card--dark {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.35);
}

.match-card--dark .match-cal-hour,
.match-card--dark .match-team strong {
  color: #f8fafc;
}

.match-card--dark .match-card-cal-time {
  background: rgba(255, 255, 255, 0.06);
}

.match-card--dark .match-stage,
.match-card--dark .match-venue {
  color: #94a3b8;
}

.match-mx-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 800;
  background: #059669;
  color: #fff;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

.match-narration-block {
  grid-column: 2;
  margin: 0.5rem 0;
  padding: 0.65rem 0.75rem;
  background: rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.match-card--dark .match-narration-block {
  background: rgba(0, 0, 0, 0.25);
  border-left-color: var(--gold);
}

.match-narrator-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-500);
  margin-bottom: 0.45rem;
}

.match-card--dark .match-narrator-label {
  color: #94a3b8;
}

.match-narrator-select {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.match-card--dark .match-narrator-select {
  background: #1e293b;
  border-color: #334155;
  color: #f1f5f9;
}

.match-narration-lines {
  margin: 0;
}

.narration-line {
  margin: 0 0 0.3rem;
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--gray-700);
}

.match-card--dark .narration-line {
  color: #cbd5e1;
}

.narration-disclaimer {
  margin: 0.35rem 0 0;
  font-size: 0.58rem;
  color: var(--gray-400);
  font-style: normal;
}

.match-tz {
  display: block;
  font-size: 0.62rem;
  color: var(--gray-400);
  margin-top: 0.15rem;
}

.match-card--dark .match-tz {
  color: #64748b;
}

.btn-watch--local {
  border: 1px dashed rgba(255, 255, 255, 0.35);
}

@media (max-width: 700px) {
  .match-narration-block {
    grid-column: 1;
  }

  .today-matches-controls {
    width: 100%;
  }

  .today-control {
    flex: 1;
    min-width: 130px;
  }

  .today-matches-grid {
    grid-template-columns: 1fr;
  }

  .today-groups-countdown-row {
    grid-template-columns: 1fr;
  }

  .groups-panel-tables {
    grid-template-columns: 1fr;
  }

  .lineup-compact-body {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .lineup-list--compact {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Tarjetas compactas estilo FIFA ── */
.match-compact {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.match-compact:hover {
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
}

.match-compact.is-mexico {
  overflow: hidden;
  border: 2px solid #16a34a;
  box-shadow:
    0 0 0 3px rgba(22, 163, 74, 0.18),
    0 10px 28px rgba(22, 163, 74, 0.2);
}

.match-compact.is-mexico .match-compact-head {
  background: linear-gradient(90deg, #14532d, #15803d, #166534);
}

.match-compact-mx-badge {
  display: block;
  width: fit-content;
  margin: 0.35rem 0.55rem 0;
  position: static;
  background: linear-gradient(90deg, #15803d, #22c55e);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  box-shadow: none;
}

.match-compact-weather {
  font-weight: 600;
  color: #bbf7d0;
}

.match-compact.is-live {
  border-color: #dc2626;
}

.match-compact-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.45rem 0.6rem;
  background: linear-gradient(90deg, #0a1628, #1e3a5f);
  color: #e2e8f0;
}

.match-compact-tournament {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
}

.match-compact-stage {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  margin-top: 0.1rem;
  line-height: 1.25;
}

.match-compact-date {
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
  color: #fbbf24;
}

.match-compact-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.75rem;
  padding: 0.55rem 0.65rem;
  align-items: center;
}

.match-compact-teams {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.match-compact-team {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-900);
}

.match-compact-time-col {
  text-align: right;
}

.match-compact-status {
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.match-compact-status.status-live { color: #dc2626; }
.match-compact-status.status-soon,
.match-compact-status.status-scheduled { color: var(--blue); }
.match-compact-status.status-finished { color: var(--gray-500); }

.match-compact-kickoff {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1;
}

.match-compact-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.match-compact-tvs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

.match-compact-tv {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 0.1rem 0.25rem;
  line-height: 0;
}

.match-compact-tv img {
  height: 16px;
  width: auto;
  max-width: 40px;
  object-fit: contain;
}

.match-compact-watch {
  font-size: 0.62rem;
  font-weight: 800;
  color: #059669;
  white-space: nowrap;
}

.match-compact-watch:hover {
  text-decoration: underline;
}

.today-matches-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0.65rem;
  align-items: start;
}

.today-matches-left,
.today-matches-right {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.today-groups-countdown-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(148px, 168px);
  gap: 0.55rem;
  align-items: start;
}

.today-cell-countdown[hidden] {
  display: none;
}

.today-groups-countdown-row:has(.today-cell-countdown[hidden]) {
  grid-template-columns: 1fr;
}

.today-cell-groups .panel-card,
.today-cell-lineup .panel-card,
.countdown-inline-card {
  height: 100%;
}

.today-cell-groups .groups-panel {
  margin: 0;
}

.countdown-inline-card {
  background: linear-gradient(160deg, #0a1628 0%, #1e3a5f 100%);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  padding: 0.65rem 0.55rem;
  text-align: center;
}

.countdown-inline-title {
  margin: 0 0 0.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
}

.countdown-inline-sub {
  margin: 0 0 0.45rem;
  font-size: 0.58rem;
  color: #94a3b8;
  line-height: 1.25;
}

.countdown-wrap--inline {
  width: 100%;
}

.countdown-grid--inline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem;
}

.countdown-inline-card .countdown-unit {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.4rem 0.25rem;
  min-width: 0;
}

.countdown-inline-card .countdown-unit strong {
  display: block;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.countdown-inline-card .countdown-unit span {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

.countdown-note--inline {
  margin: 0.45rem 0 0;
  font-size: 0.58rem;
  line-height: 1.3;
  color: #86efac;
  font-weight: 600;
}

.today-matches-list--compact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 0;
  min-width: 0;
}

.today-matches-right {
  justify-content: flex-start;
}

.lineup-panel--compact {
  margin-top: 0;
}

.lineup-compact-body {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0.5rem;
  align-items: start;
}

.lineup-photo-link--compact {
  margin: 0;
}

.lineup-photo--compact {
  width: 88px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.lineup-list--compact {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.2rem 0.35rem;
}

.lineup-list--compact .lineup-player {
  font-size: 0.62rem;
}

.lineup-list--compact .lineup-num {
  min-width: 1.1rem;
}

.countdown-top--agenda {
  padding: 0.75rem 0 1rem;
}

.countdown-top--agenda[hidden] {
  display: none;
}

.hero-stadium--hidden {
  display: none !important;
}

.inauguration-banner {
  margin-bottom: 0;
}

.today-matches-toolbar {
  margin-bottom: 0.55rem;
}

.group-block {
  margin-bottom: 0.45rem;
}

.groups-panel .group-block:last-child {
  margin-bottom: 0;
}

.groups-panel-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.5rem;
}

.group-block--featured {
  grid-column: 1 / -1;
}

.panel-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.panel-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.panel-card-head h3 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.panel-card-link {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.panel-card-link:hover {
  text-decoration: underline;
}

.group-block {
  margin-bottom: 0.65rem;
}

.group-block:last-child {
  margin-bottom: 0;
}

.group-block-title {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
}

.group-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.65rem;
}

.group-table th,
.group-table td {
  padding: 0.28rem 0.2rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
}

.group-table th:first-child,
.group-table td:first-child {
  text-align: left;
}

.group-table th {
  font-weight: 800;
  color: var(--gray-500);
  font-size: 0.58rem;
}

.grp-team {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  color: var(--gray-900);
}

.group-table tr.is-mx {
  background: rgba(5, 150, 105, 0.08);
}

.group-table tr.is-mx .grp-team {
  color: #047857;
}

.lineup-formation {
  font-size: 0.65rem;
  font-weight: 800;
  background: #059669;
  color: #fff;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.lineup-photo-link {
  display: block;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.lineup-photo {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}

.lineup-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 0.5rem;
}

.lineup-player {
  display: grid;
  grid-template-columns: 1.4rem 1fr auto;
  gap: 0.25rem;
  align-items: center;
  font-size: 0.68rem;
  padding: 0.2rem 0.3rem;
  background: var(--gray-50);
  border-radius: 4px;
}

.lineup-num {
  font-weight: 800;
  color: var(--blue);
}

.lineup-name {
  font-weight: 700;
  color: var(--gray-900);
}

.lineup-pos {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--gray-500);
}

.lineup-more {
  display: block;
  margin-top: 0.5rem;
  text-align: center;
}

/* ── Narrador en vivo ── */
.mundial-narrator {
  background: linear-gradient(180deg, #0a1628 0%, #0f2744 100%);
  border-block: 3px solid var(--gold);
  padding: 1.25rem 0 1.5rem;
}

.mundial-narrator[hidden] {
  display: none;
}

.mundial-narrator.is-live {
  border-block-color: #dc2626;
  animation: narrator-glow 2.5s ease-in-out infinite;
}

.mundial-narrator.is-mexico .mundial-narrator-box {
  border-color: rgba(34, 197, 94, 0.45);
  background: linear-gradient(135deg, rgba(20, 83, 45, 0.5), rgba(15, 39, 68, 0.8));
}

@keyframes narrator-glow {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(220, 38, 38, 0); }
  50% { box-shadow: inset 0 0 40px rgba(220, 38, 38, 0.12); }
}

.mundial-narrator-inner {
  display: grid;
  gap: 0.85rem;
  width: min(var(--container-max), calc(100% - var(--container-gutter) * 2));
  margin-inline: auto;
}

.mundial-narrator-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  background: #dc2626;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.mundial-narrator.is-pregame .mundial-narrator-badge {
  background: var(--blue);
}

.mundial-narrator-match {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.mundial-narrator-match span {
  font-weight: 600;
  color: #94a3b8;
  font-size: 0.85em;
}

.mundial-narrator-venue {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.mundial-narrator-weather {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.15rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
}

.mundial-narrator-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1rem 1.15rem;
}

.mundial-narrator-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.55rem;
}

.mundial-narrator-line {
  margin: 0 0 0.45rem;
  font-size: clamp(1.05rem, 2.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.45;
  color: #f8fafc;
}

.mundial-narrator-line--secondary {
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0;
}

.mundial-narrator-kickoff {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #86efac;
}

/* ── Clima en sedes ── */
.stadium-card-weather {
  position: absolute;
  bottom: 0.4rem;
  right: 0.4rem;
  background: rgba(10, 22, 40, 0.82);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}

/* ── Quiosco de prensa al pie ── */
.press-kiosk-section {
  margin: 2rem auto 1.5rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  width: min(var(--container-max), calc(100% - var(--container-gutter) * 2));
}

.press-kiosk-head {
  margin-bottom: 1rem;
}

.press-kiosk-head h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  color: var(--blue-deep);
}

.press-kiosk-head p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.press-widget--kiosk {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1rem;
}

.press-widget--kiosk .press-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.5rem 1rem;
}

.press-widget--kiosk .press-item a {
  border-bottom: none;
  padding: 0.5rem 0;
}

/* ── Barra estado en vivo ── */
.live-status-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  margin-bottom: 0.55rem;
  background: linear-gradient(90deg, #0f172a, #1e3a5f);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.live-status-bar.is-live {
  background: linear-gradient(90deg, #450a0a, #991b1b);
  border-color: rgba(248, 113, 113, 0.35);
  color: #fecaca;
}

.live-status-bar .live-pulse {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

/* ── Noticias en vivo (robot) ── */
.live-news-section {
  margin-bottom: 0.65rem;
}

.live-news-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.45rem;
}

.live-news-title {
  margin: 0;
  font-size: clamp(0.95rem, 2.8vw, 1.15rem);
  font-weight: 800;
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.live-news-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-500);
}

.live-news-track {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

.live-news-card {
  flex: 0 0 min(78vw, 220px);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease;
}

.live-news-card:hover {
  transform: translateY(-2px);
}

.live-news-card-img {
  position: relative;
  height: 100px;
}

.live-news-photo {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.live-news-tag {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
}

.live-news-tag--live {
  background: #dc2626;
  animation: pulse-dot 1.2s ease-in-out infinite;
}

.live-news-card-title {
  margin: 0;
  padding: 0.45rem 0.5rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--gray-800);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Banner inauguración con foto ── */
.inauguration-banner-inner--hero {
  display: grid;
  grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.inauguration-banner-photo {
  min-height: 140px;
}

.inauguration-photo {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  display: block;
}

.inauguration-banner-content {
  padding: 0.85rem 0.85rem 0.85rem 0;
}

.inauguration-banner--live .inauguration-banner-inner {
  border-color: rgba(248, 113, 113, 0.4);
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.inauguration-banner--post .inauguration-banner-inner {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
}

.inauguration-lead {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: #d1fae5;
  line-height: 1.4;
}

.countdown-live-score {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.today-cell-countdown.is-live .countdown-inline-card {
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.15);
}

/* ── Navegación móvil inferior (estilo ESPN) ── */
.mobile-quick-nav {
  display: none;
}

@media (max-width: 820px) {
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-quick-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 600;
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.25rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
    justify-content: space-around;
    gap: 0.15rem;
  }

  .mobile-quick-nav-link {
    flex: 1;
    text-align: center;
    font-size: 0.58rem;
    font-weight: 800;
    color: #94a3b8;
    text-decoration: none;
    padding: 0.35rem 0.15rem;
    border-radius: 8px;
    line-height: 1.2;
  }

  .mobile-quick-nav-link:hover,
  .mobile-quick-nav-link:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-quick-nav-link--wa {
    color: #86efac;
  }

  .store-cta-copy {
    display: none;
  }

  .store-cta-compact {
    width: auto;
    padding: 0.25rem;
    background: transparent;
    border: none;
  }

  .brand-location {
    font-size: 0.72rem;
  }

  .location-municipio,
  .location-phone {
    display: none;
  }

  .inauguration-banner-inner--hero {
    grid-template-columns: 1fr;
  }

  .inauguration-banner-photo {
    max-height: 140px;
    overflow: hidden;
  }

  .inauguration-banner-content {
    padding: 0.75rem;
  }

  .today-matches-grid {
    display: flex;
    flex-direction: column;
  }

  .today-matches-right {
    order: 1;
  }

  .today-matches-left {
    order: 2;
  }

  .today-matches-list--compact {
    grid-template-columns: 1fr;
  }

  .match-compact-body {
    flex-wrap: wrap;
  }

  .match-broadcast-chips {
    gap: 0.25rem;
  }

  .broadcast-chip {
    font-size: 0.62rem;
    padding: 0.25rem 0.45rem;
  }

  .live-news-card {
    flex: 0 0 min(72vw, 260px);
  }

  .dashboard-sidebar {
    order: 0;
  }

  .dashboard-grid {
    display: flex;
    flex-direction: column;
  }

  .ticker-item {
    font-size: 0.78rem;
  }

  .mundial-narrator-line {
    font-size: 1rem;
  }

  .press-widget--kiosk .press-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 821px) {
  .mobile-quick-nav {
    display: none !important;
  }

  .dashboard-grid {
    gap: 0.85rem;
  }

  .momentos-track {
    max-width: 100%;
  }
}

/* ── Media hub: robot de prensa (fotos, videos, entrevistas) ── */
.media-hub-section {
  margin: 0.5rem 0 0.75rem;
}

.media-hub-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.65rem;
}

.media-hub-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.media-hub-section.is-collapsed,
.live-news-section.is-collapsed {
  display: none !important;
}

.media-hub-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
}

.media-rotator-hero {
  margin-bottom: 0.65rem;
  border-radius: 14px;
  overflow: hidden;
  transition: opacity 0.28s ease;
}

.media-rotator-hero:not(.has-content) {
  display: none;
  margin: 0;
  min-height: 0;
}

.media-rotator-track:not(.has-content) {
  display: none;
}

.media-hero-inner {
  position: relative;
}

.media-rotator-hero .media-rotator-card {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
  gap: 0;
  background: linear-gradient(135deg, #0f2744 0%, #1e3a5f 100%);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.media-rotator-hero .media-rotator-card-img {
  min-height: 160px;
}

.media-rotator-hero .media-rotator-photo {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.media-rotator-hero .media-rotator-title {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  align-self: center;
}

.media-hero-dots {
  position: absolute;
  bottom: 0.5rem;
  right: 0.65rem;
  display: flex;
  gap: 0.3rem;
}

.media-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.media-hero-dot.is-active {
  background: #86efac;
  transform: scale(1.2);
}

.media-rotator-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  padding-bottom: 0.35rem;
}

@media (max-width: 900px) {
  .media-rotator-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .media-rotator-track .media-rotator-card {
    flex: 0 0 min(220px, 72vw);
    scroll-snap-align: start;
  }
}

.media-rotator-track::-webkit-scrollbar {
  height: 4px;
}

.media-rotator-track::-webkit-scrollbar-thumb {
  background: rgba(15, 39, 68, 0.25);
  border-radius: 4px;
}

.media-rotator-card {
  flex: 0 0 min(220px, 72vw);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 39, 68, 0.1);
  box-shadow: 0 2px 8px rgba(15, 39, 68, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.media-rotator-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 39, 68, 0.12);
}

.media-rotator-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e2e8f0;
}

.media-rotator-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.media-rotator-card:hover .media-rotator-photo {
  transform: scale(1.04);
}

.media-theme-cr7 .media-rotator-photo {
  object-position: center 20%;
}

.media-theme-press .media-rotator-photo {
  object-position: center top;
}

.media-theme-stars .media-rotator-photo {
  object-position: center 30%;
}

.media-theme-action .media-rotator-photo {
  object-position: center 55%;
}

.media-theme-mx .media-rotator-photo {
  object-position: center 40%;
}

.media-rotator-tag {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(15, 39, 68, 0.82);
  color: #86efac;
}

.media-rotator-title {
  margin: 0;
  padding: 0.55rem 0.6rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.today-cell-countdown.is-post .countdown-inline-card {
  border-color: rgba(34, 197, 94, 0.35);
  background: linear-gradient(135deg, #0f2744 0%, #1a365d 100%);
}

.today-cell-countdown.is-post .countdown-inline-title,
.today-cell-countdown.is-post .countdown-inline-sub,
.today-cell-countdown.is-post .countdown-note {
  color: #d1fae5;
}

@media (max-width: 640px) {
  .media-rotator-hero .media-rotator-card {
    grid-template-columns: 1fr;
  }

  .media-rotator-hero .media-rotator-card-img {
    max-height: 140px;
  }
}
