/* ── Countdown ──────────────────────────────────────────────────────────── */

#match-countdown {
  position: absolute;
  top: 14px;
  right: 60px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#match-countdown.countdown-visible {
  opacity: 1;
}

/* ── Ring SVG ───────────────────────────────────────────────────────────── */
.countdown-clock {
  flex-shrink: 0;
}

.countdown-clock-svg .clock-track {
  stroke: rgba(255,255,255,0.12);
}

.countdown-clock-svg .clock-progress {
  stroke: #ffffff;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.4,0,0.2,1);
}

.countdown-clock-svg .clock-center {
  fill: #ffffff;
}

body.light-theme .countdown-clock-svg .clock-track {
  stroke: rgba(0,0,0,0.1);
}

body.light-theme .countdown-clock-svg .clock-progress {
  stroke: #111122;
}

body.light-theme .countdown-clock-svg .clock-center {
  fill: #111122;
}

/* ── Right side: units + label ──────────────────────────────────────────── */
.countdown-right {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.countdown-units {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.countdown-unit-label {
  font-size: 0.45rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

.countdown-separator {
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  padding-bottom: 6px;
}

.countdown-session-label {
  font-size: 0.55rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

body.light-theme .countdown-value {
  color: #111122;
  text-shadow: 0 1px 4px rgba(255,255,255,0.9);
}

body.light-theme .countdown-unit-label {
  color: rgba(0,0,0,0.4);
  text-shadow: none;
}

body.light-theme .countdown-separator {
  color: rgba(0,0,0,0.2);
}

body.light-theme .countdown-session-label {
  color: rgba(0,0,0,0.4);
  text-shadow: none;
}

/* ── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #match-countdown {
    top: 10px;
    right: 10px;
    gap: 7px;
  }

  .countdown-value {
    font-size: 0.88rem;
  }

  .countdown-unit-label {
    font-size: 0.4rem;
  }

  .countdown-session-label {
    font-size: 0.48rem;
  }
}