* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh;
    overflow: hidden;
    background: #050507;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 45%,
            rgba(150, 30, 70, 0.16),
            transparent 35%),
        radial-gradient(circle at 20% 20%,
            rgba(80, 30, 90, 0.10),
            transparent 30%),
        #050507;
}

.glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: drift 10s ease-in-out infinite alternate;
}

.glow-one {
    background: #b91c5c;
    top: -250px;
    left: -150px;
}

.glow-two {
    background: #6d28d9;
    bottom: -300px;
    right: -150px;
    animation-delay: -5s;
}

.stars {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.7) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 120px 120px, 190px 190px;
    background-position: 20px 30px, 80px 100px;
}

.container {
    position: relative;
    z-index: 2;

    width: min(900px, 92%);
    min-height: 100vh;
    margin: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 50px 20px;
}

.logo {
    font-size: 13px;
    letter-spacing: 5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
}

.logo span {
    color: #ff477e;
    margin-right: 8px;
    font-size: 16px;
}

.divider {
    width: 55px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: 32px;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
    color: #ff6d97;
    margin-bottom: 22px;
}

h1 {
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.05;
    letter-spacing: -3px;
    font-weight: 700;
    margin-bottom: 28px;
}

h1 span {
    color: rgba(255, 255, 255, 0.48);
}

.description {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 50px;
}

.countdown-title {
    font-size: 10px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 18px;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 45px;
}

.time-box {
    min-width: 90px;
}

.time-box span {
    display: block;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    letter-spacing: -2px;
    font-variant-numeric: tabular-nums;
}

.time-box small {
    display: block;
    margin-top: 7px;
    font-size: 8px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.35);
}

.colon {
    color: rgba(255, 255, 255, 0.18);
    font-size: 30px;
    margin-bottom: 17px;
}

.coming {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
}

.pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff477e;
    box-shadow: 0 0 15px #ff477e;
    animation: pulse 2s ease-in-out infinite;
}

.footer {
    position: absolute;
    bottom: 28px;

    display: flex;
    gap: 10px;

    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.22);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes drift {

    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(80px, 40px);
    }
}

@media (max-width: 600px) {

    h1 {
        letter-spacing: -2px;
    }

    .description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 40px;
    }

    .countdown {
        gap: 6px;
    }

    .time-box {
        min-width: 65px;
    }

    .time-box span {
        font-size: 28px;
    }

    .time-box small {
        font-size: 6px;
        letter-spacing: 2px;
    }

    .colon {
        font-size: 20px;
    }

    .footer {
        font-size: 6px;
    }
}