* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff00cc, #3333ff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.coming-container {
    max-width: 800px;
    padding: 20px;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.glow-text {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #fff,
                 0 0 20px #ff00cc,
                 0 0 40px #ff00cc;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    from { text-shadow: 0 0 10px #fff, 0 0 20px #ff00cc; }
    to { text-shadow: 0 0 20px #fff, 0 0 40px #00ffff; }
}

.tagline {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown div {
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.countdown span {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.subscribe-box {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.subscribe-box input {
    padding: 12px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    width: 250px;
}

.subscribe-box button {
    padding: 12px 20px;
    border: none;
    background: #ff00cc;
    color: #fff;
    font-weight: 600;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: 0.3s;
}

.subscribe-box button:hover {
    background: #00ffff;
    color: #000;
}

.socials a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.socials a:hover {
    color: #00ffff;
}

@media(max-width: 600px) {
    .glow-text {
        font-size: 2rem;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .subscribe-box {
        flex-direction: column;
    }

    .subscribe-box input,
    .subscribe-box button {
        border-radius: 30px;
        margin: 5px 0;
        width: 100%;
    }
}
