* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  min-height: 100%;
  font-family: 'Montserrat', sans-serif;
  background-color: #07080c;
  color: #fff;
}
body {
  min-height: 100vh;
}

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(0, 85, 170, 0.35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(254, 231, 21, 0.12), transparent 40%),
    #041c33;
  display: flex;
}

.wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.card {
  width: min(520px, 100%);
  background: linear-gradient(180deg, #0055aa 0%, #072e57 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(254, 231, 21, 0.1), transparent 45%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 50%);
  pointer-events: none;
}
.card > * {
  position: relative;
  z-index: 1;
}

.icon-badge {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: rgba(254, 231, 21, 0.15);
  border: 1px solid rgba(254, 231, 21, 0.4);
  display: grid;
  place-items: center;
}
.icon-badge i {
  font-size: 1.7rem;
  color: #fee715;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: #fee715;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
}

.lead {
  margin: 0 auto 1.8rem;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.65;
}

.release-date {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.release-date i {
  color: #fee715;
}
.release-date strong {
  color: #fee715;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.countdown__item {
  min-width: 68px;
  padding: 0.9rem 0.5rem;
  border-radius: 14px;
  background: rgba(7, 12, 22, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.countdown__number {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hint {
  margin: 0 0 2rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  flex: 1 1 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease;
}
.button--light {
  background: #fee715;
  color: #0f1924;
  box-shadow: 0 8px 24px rgba(254, 231, 21, 0.2);
}
.button--light:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.button--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.button--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fee715;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .card {
    padding: 2.2rem 1.6rem;
    border-radius: 22px;
  }
  .countdown__item {
    min-width: 58px;
    padding: 0.7rem 0.3rem;
  }
  .countdown__number {
    font-size: 1.4rem;
  }
}