.world-cup-banner {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background-color: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.world-cup-banner > .banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.world-cup-banner > .banner-background > .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.7);
}

/* ─── Content: fila con slots laterales opcionales ─── */
.world-cup-banner > .banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  width: 100%;
  max-width: 1000px;
}

/* ─── Bloque central: trofeo + countdown ─── */
.world-cup-banner > .banner-content > .banner-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex: 1;
}

.world-cup-banner > .banner-content > .banner-main > .trophy-image {
  height: 150px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

.world-cup-banner > .banner-content > .banner-main > .countdown-container {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.world-cup-banner > .banner-content > .banner-main > .countdown-container > .countdown-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.world-cup-banner > .banner-content > .banner-main > .countdown-container > .time-blocks {
  display: flex;
  gap: 16px;
}

.world-cup-banner > .banner-content > .banner-main > .countdown-container > .time-blocks > .time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  min-width: 75px;
}

.world-cup-banner > .banner-content > .banner-main > .countdown-container > .time-blocks > .time-block > .value {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.world-cup-banner > .banner-content > .banner-main > .countdown-container > .time-blocks > .time-block > .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* ─── Slots laterales de sponsors ─── */
.banner-sponsor-slot {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Tarjeta tipo "Sponsor Oficial" — igual estética que sala premium */
.banner-sponsor-logo {
  display: flex;
  flex-direction: column;
  width: 110px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.banner-sponsor-logo.-premium {
  width: 130px;
}

.banner-sponsor-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), 0 0 12px rgba(255, 210, 63, 0.18);
  border-color: rgba(255, 210, 63, 0.4);
}

/* Tag "Sponsor Oficial" */
.banner-sponsor-logo > .banner-sponsor-tag {
  padding: 5px 8px;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amarilla);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Área de imagen */
.banner-sponsor-logo > .banner-sponsor-img {
  flex: 1;
  min-height: 80px;
  overflow: hidden;
}

.banner-sponsor-logo > .banner-sponsor-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.92;
  transition: transform 200ms ease, opacity 180ms;
}

.banner-sponsor-logo:hover > .banner-sponsor-img > img {
  opacity: 1;
  transform: scale(1.05);
}

/* Footer con nombre */
.banner-sponsor-logo > .banner-sponsor-footer {
  padding: 6px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.banner-sponsor-logo > .banner-sponsor-footer > .banner-sponsor-name {
  display: block;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── Mobile: ocultar slots laterales ─── */
@media (max-width: 768px) {
  .banner-sponsor-slot { display: none; }

  .world-cup-banner > .banner-content > .banner-main {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .world-cup-banner > .banner-content > .banner-main > .trophy-image { height: 110px; }

  .world-cup-banner > .banner-content > .banner-main > .countdown-container > .time-blocks { gap: 12px; }

  .world-cup-banner > .banner-content > .banner-main > .countdown-container > .time-blocks > .time-block {
    min-width: 65px;
    padding: 10px 12px;
  }

  .world-cup-banner > .banner-content > .banner-main > .countdown-container > .time-blocks > .time-block > .value {
    font-size: 24px;
  }
}
