.countdown-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: min(690px, 100%);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.countdown-label {
  grid-column: 1 / -1;
  color: var(--yellow);
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.countdown-unit {
  display: grid;
  gap: 2px;
  min-height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.countdown-unit strong {
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(2.45rem, 4.5vw, 4.15rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  line-height: 1;
  min-width: 2ch;
  text-align: center;
  text-shadow: none;
}

.countdown-unit small {
  color: rgba(247, 247, 242, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-action {
  gap: 10px;
  min-height: 56px;
  padding-inline: 22px;
  box-shadow: 7px 7px 0 rgba(240, 18, 164, 0.8);
  transform: skewX(-8deg);
}

.hero-action svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2.4;
  transform: skewX(8deg);
}

.hero-action:not(.outline-button) {
  min-width: 214px;
}

.hero-action.outline-button {
  box-shadow: 7px 7px 0 rgba(255, 242, 0, 0.24);
}

.video-button {
  grid-row: 2;
  grid-column: 2;
  justify-self: end;
  align-self: end;
  position: relative;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid rgba(247, 247, 242, 0.38);
  background: rgba(240, 18, 164, 0.9);
  color: var(--text);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 8px 8px 0 rgba(255, 242, 0, 0.85);
  transform: skewX(-7deg);
}

.play-icon {
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.news-thumb .play-icon {
  position: relative;
  z-index: 1;
}

.play-icon::before {
  display: block;
  width: 0;
  height: 0;
  margin: 11px 0 0 15px;
  border-block: 8px solid transparent;
  border-left: 12px solid currentColor;
  content: "";
}

@media (max-width: 720px) {
  .countdown-panel {
    padding: 12px 10px 13px;
  }

  .countdown-unit {
    min-height: 64px;
  }

  .countdown-unit strong {
    font-size: clamp(2rem, 11vw, 3.05rem);
  }

  .hero-cta-row {
    display: none;
  }
}
