:root {
    color-scheme: dark;
    font-family: "Trebuchet MS", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    overflow: hidden;
    color: #fff8fb;
    background: radial-gradient(circle at top, #5b1a50 0%, #240b27 45%, #11040f 100%);
}

.countdown-page {
    position: relative;
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
    isolation: isolate;
}

.glow {
    position: absolute;
    z-index: -1;
    width: 42vw;
    max-width: 520px;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(16px);
    opacity: .42;
}

.glow-one { top: -14%; left: -10%; background: #f04f9c; }
.glow-two { right: -12%; bottom: -18%; background: #8369ff; }

.countdown-card {
    width: min(760px, 100%);
    padding: clamp(32px, 6vw, 64px);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 32px;
    background: rgba(41, 10, 38, .62);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
    backdrop-filter: blur(14px);
}

.eyebrow {
    margin: 0 0 14px;
    color: #ffc5e4;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(2.4rem, 7vw, 4.7rem);
    font-weight: 500;
    line-height: 1.05;
}

.release-date {
    margin: 17px 0 37px;
    color: #f8ddec;
    font-size: clamp(.95rem, 2vw, 1.12rem);
}

.timer {
    display: grid;
    grid-template-columns: repeat(4, minmax(70px, 1fr));
    gap: clamp(8px, 2vw, 20px);
}

.time-unit {
    padding: 18px 8px 15px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 18px;
    background: rgba(255, 255, 255, .09);
}

.time-unit strong {
    display: block;
    color: #ffffff;
    font-size: clamp(2rem, 7vw, 4.3rem);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.time-unit span {
    display: block;
    margin-top: 9px;
    color: #ffc5e4;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.status {
    margin: 32px 0 0;
    color: #f5d6e8;
    line-height: 1.55;
}

@media (max-width: 480px) {
    .countdown-page { padding: 15px; }
    .countdown-card { padding: 35px 18px; border-radius: 24px; }
    .timer { gap: 7px; }
    .time-unit { padding: 15px 3px 13px; border-radius: 14px; }
    .time-unit span { font-size: .61rem; letter-spacing: .03em; }
}
