.wc26-home-promo {
  max-width: var(--wc26-content-max, 1170px);
  margin: 16px auto 20px;
  padding: 0 20px;
}

.wc26-promo__card {
  background: linear-gradient(145deg, #12151a 0%, #0d1014 100%);
  border-radius: var(--wc26-radius-lg, 12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wc26-promo__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.wc26-promo__badge {
  display: inline-block;
  background: var(--wc26-brand, #c65a22);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.wc26-promo__title {
  font-size: 1.35rem;
  margin: 0;
  font-weight: 700;
  color: var(--wc26-ink, #f3f4f6);
}

.wc26-promo__countdown-value {
  font-size: 1.5rem;
  color: var(--wc26-brand, #c65a22);
}

.wc26-promo__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.wc26-promo__pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 16px;
  scroll-snap-type: x mandatory;
}

.wc26-pill {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  background: var(--wc26-card, #1c2128);
  border-radius: 999px;
  color: var(--wc26-ink, #f3f4f6);
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wc26-pill:hover,
.wc26-pill:focus {
  border-color: var(--wc26-brand, #c65a22);
  outline: none;
}

.wc26-promo__live {
  background: var(--wc26-card, #1c2128);
  border-radius: var(--wc26-radius, 8px);
  padding: 12px;
  margin-bottom: 14px;
}

.wc26-promo__live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wc26-live, #22c55e);
  margin-inline-end: 6px;
  animation: wc26-pulse 2s ease-in-out infinite;
}

@keyframes wc26-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (prefers-reduced-motion: reduce) {
  .wc26-promo__live-dot {
    animation: none;
  }
}

.wc26-promo__live-match {
  display: block;
  margin-top: 8px;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.wc26-promo__results {
  background: var(--wc26-card, #1c2128);
  border-radius: var(--wc26-radius, 8px);
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wc26-promo__result-match {
  display: block;
  margin-top: 8px;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.wc26-promo__result-score {
  display: inline-block;
  margin: 0 6px;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--wc26-brand, #c65a22);
}

.wc26-promo__today {
  margin-top: 16px;
}

/* Match cards inside the dark promo must use dark ink on white cards. */
.wc26-home-promo .wc26-match-card {
  --wc26-ink: #111827;
  --wc26-muted: #6b7280;
  color: #111827;
}

.wc26-home-promo .wc26-match-card__name,
.wc26-home-promo .wc26-match-card__score,
.wc26-home-promo .wc26-match-card__score strong {
  color: #111827;
}

.wc26-home-promo .wc26-match-card__score {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.wc26-home-promo .wc26-match-card--ended .wc26-match-card__score {
  background: rgba(198, 90, 34, 0.1);
  border-color: rgba(198, 90, 34, 0.25);
}

.wc26-home-promo .wc26-match-card--live .wc26-match-card__score {
  background: rgba(34, 197, 94, 0.15);
  color: #064e3b;
}

.wc26-home-promo .wc26-match-card--live .wc26-match-card__score strong {
  color: #064e3b;
}

.wc26-home-promo .wc26-match-card__score span {
  color: #9ca3af;
}

.wc26-home-promo .wc26-match-card__meta,
.wc26-home-promo .wc26-match-card__footer,
.wc26-home-promo .wc26-match-card__venue {
  color: #6b7280;
}

.wc26-promo__teams {
  margin-top: 24px;
}

.wc26-promo__section-title {
  font-size: 1rem;
  margin: 0 0 8px;
}

.wc26-promo__teams-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wc26-team-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--wc26-card, #1c2128);
  border-radius: var(--wc26-radius, 8px);
  color: inherit;
  text-decoration: none;
  font-size: 0.85rem;
}

.wc26-promo__meta {
  font-size: 0.75rem;
  color: var(--wc26-muted, #9ca3af);
  margin: 12px 0 0;
}

@media (max-width: 575px) {
  .wc26-promo__cta-row .wc26-btn {
    flex: 1 1 100%;
  }
}
