:root {
  --navy: #02033f;
  --navy-light: #11135b;
  --orange: #f27a24;
  --orange-dark: #d95f10;
  --yellow: #f6bd35;
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; background: transparent; }
body { padding: 1px; color: #fff; }

.countdown-bar {
  position: relative;
  width: 100%;
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 58px);
  overflow: hidden;
  padding: 24px clamp(20px, 5vw, 64px);
  background: linear-gradient(110deg, var(--navy), var(--navy-light));
  border-radius: 7px;
  box-shadow: 0 8px 24px rgba(12, 15, 50, .12);
}

.countdown-bar::after {
  content: "";
  position: absolute;
  right: -30px;
  width: 170px;
  height: 170px;
  border: 1px dashed rgba(246, 189, 53, .22);
  border-radius: 50%;
  pointer-events: none;
}

.message, .counter { position: relative; z-index: 1; margin: 0; white-space: nowrap; }
.message { font-size: clamp(18px, 2vw, 26px); font-weight: 700; letter-spacing: -.025em; }
.counter { color: var(--yellow); font-size: clamp(18px, 2.2vw, 27px); font-weight: 700; }
.counter strong { color: var(--orange); font-size: clamp(38px, 4.5vw, 58px); line-height: 1; letter-spacing: -.055em; font-variant-numeric: tabular-nums; }

.cta {
  position: relative;
  z-index: 1;
  min-height: 48px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  color: #fff;
  background: var(--orange);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}
.cta span { font-size: 23px; line-height: 0; }
.cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.cta:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

@media (max-width: 760px) {
  .countdown-bar { min-height: 150px; flex-wrap: wrap; gap: 13px 24px; padding: 22px 18px; }
  .message { flex-basis: 100%; text-align: center; }
}

@media (max-width: 440px) {
  .countdown-bar { min-height: 185px; flex-direction: column; flex-wrap: nowrap; }
  .cta { width: 100%; max-width: 290px; }
}

@media (prefers-reduced-motion: reduce) {
  .cta { transition: none; }
}
