@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap');

body {
    margin: 0;
    padding: 0;
    background: #000;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
        filter: brightness(1.1);
        text-shadow:
            0 0 3px #ff4edb,
            0 0 8px #ff4edb,
            0 0 15px #ff009d;
    }
    20%, 24%, 55% {
        opacity: 0.6;
        filter: brightness(0.8);
        text-shadow: none;
    }
}

/* Desktop styling with max sizes */
.title {
    font-size: clamp(50px, 6vw, 180px); /* min 40px, max 120px */
    font-weight: 900;
    color: #ff4edb;
    letter-spacing: 0.1vw;
    text-shadow:
        0 0 3px #ff4edb,
        0 0 10px #ff009d;
    filter: drop-shadow(0 0 4px #ff4edb);
    animation: flicker 5s infinite;
}

#countdown {
    font-size: clamp(20px, 3vw, 60px); /* min 20px, max 60px */
    margin: 5px 0 20px;
    font-weight: 700;
    letter-spacing: 0.1vw;
}

.tagline {
    margin-top: -80px;
    line-height: 1.2;
    font-size: clamp(12px, 2vw, 28px); /* smaller max from 35px ? 28px */
    font-weight: 600;
    opacity: 0.9;
    text-shadow: 0 0 5px #ffffff;
}

/* Mobile stays responsive */
@media (max-width: 768px) {
    .title {
        font-size: 8vw;
        letter-spacing: 0.3vw;
    }
    #countdown {
        font-size: 4vw;
    }
    .tagline {
        font-size: 3vw;
        margin-top: -8vw;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 6vw;
        letter-spacing: 0.2vw;
    }
    #countdown {
        font-size: 3.5vw;
    }
    .tagline {
        font-size: 2.8vw;
        margin-top: -6vw;
    }
}
