* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: Poppins, sans-serif;
    background: #050608;
    color: #fff;

    margin: 0;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow-x: hidden;
    position: relative;
}

/* Animated Background */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;

    background:
        radial-gradient(circle at 20% 20%, rgba(0, 174, 239, .15), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(11, 79, 255, .15), transparent 35%),
        radial-gradient(circle at 50% 90%, rgba(0, 213, 255, .10), transparent 40%);

    filter: blur(80px);
}



.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 1;
}

.hero {
    position: relative;
    z-index: 10;

    width: 100%;
    max-width: 1000px;

    margin: auto;
    padding: 40px 20px;

    text-align: center;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: min(420px, 80vw);
    height: auto;
    display: block;
    margin: auto;
}

.brand-tagline {
    margin-top: -15px;
    /* logo ke bilkul niche le aayega */
    font-size: 22px;
    letter-spacing: 10px;
    color: #cfd8dc;
    font-weight: 500;
}

.brand-tagline::before,
.brand-tagline::after {
    content: "";
    display: inline-block;
    width: 80px;
    height: 2px;
    background: #00AEEF;
    margin: 0 20px;
    vertical-align: middle;
}

.brand-tagline {
    margin-top: 5px;
}



.brand-tagline::before {

    right: 115%;
}

.brand-tagline::after {

    left: 115%;
}

@keyframes logoGlow {

    0% {

        filter: drop-shadow(0 0 10px #00aeef);

    }

    100% {

        filter: drop-shadow(0 0 35px #00aeef);

    }

}

.ring {

    width: 250px;

    height: 250px;

    border: 2px solid #00AEEF;

    border-radius: 50%;

    margin: auto;

    position: absolute;

    left: 50%;

    top: -20px;

    transform: translateX(-50%);

    animation: ring 4s infinite;

    opacity: .6;

}

@keyframes ring {

    0% {

        transform: translateX(-50%) scale(.8);

        opacity: 1;

    }

    100% {

        transform: translateX(-50%) scale(1.6);

        opacity: 0;

    }

}

h1 {

    font-size: 68px;

    font-weight: 800;

    line-height: 75px;

    margin-top: 80px;

    letter-spacing: 3px;

}

p {

    margin-top: 25px;

    font-size: 18px;

    opacity: .8;

}

/* #countdown {

    display: flex;

    justify-content: center;

    gap: 35px;

    margin-top: 45px;

}

#countdown div {

    width: 110px;

    height: 110px;

    border: 1px solid #00AEEF;

    border-radius: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    backdrop-filter: blur(8px);

    box-shadow: 0 0 20px #00aeef33;

}

#countdown span {

    font-size: 42px;

    font-weight: 700;

} */

button {

    margin-top: 45px;

    padding: 18px 45px;

    background: #00AEEF;

    border: none;

    border-radius: 50px;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;

    transition: .4s;

}

button:hover {

    background: white;

    color: #111;

    transform: translateY(-5px);

    box-shadow: 0 0 30px #00aeef;

}

canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    z-index: 2;
}

.launching {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 50px;

    animation: fadeUp 1.2s ease;

}

.launching h2 {

    font-size: 32px;

    font-weight: 700;

    letter-spacing: 10px;

    color: #00AEEF;

    text-transform: uppercase;

    text-shadow: 0 0 20px #00AEEF;

    animation: pulseGlow 2s infinite alternate;

}

.line {

    width: 120px;

    height: 2px;

    background: linear-gradient(to right, transparent, #00AEEF, transparent);

    animation: lineMove 2.5s infinite;

}

.launch-text {

    margin-top: 25px;

    font-size: 18px;

    max-width: 700px;

    margin-inline: auto;

    line-height: 32px;

    color: #d7d7d7;

    opacity: .9;

}

.notify-btn {

    margin-top: 45px;

    padding: 18px 45px;

    border: none;

    border-radius: 50px;

    background: #00AEEF;

    color: white;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;

    transition: .4s;

}

.notify-btn:hover {

    background: white;

    color: #111;

    box-shadow: 0 0 30px #00AEEF;

    transform: translateY(-5px);

}

@keyframes pulseGlow {

    0% {

        text-shadow: 0 0 10px #00AEEF;

    }

    100% {

        text-shadow: 0 0 35px #00AEEF,

            0 0 60px #00AEEF;

    }

}

@keyframes lineMove {

    0% {

        opacity: .3;

        transform: scaleX(.7);

    }

    100% {

        opacity: 1;

        transform: scaleX(1.2);

    }

}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media(max-width:768px) {

    body {
        padding: 20px;
    }

    .hero {
        padding: 20px 10px;
    }

    .logo {
        width: 220px;
    }

    .ring {
        width: 170px;
        height: 170px;
        top: 10px;
    }

    .brand-tagline {
        font-size: 14px;
        letter-spacing: 5px;
    }

    .brand-tagline::before,
    .brand-tagline::after {
        width: 35px;
        margin: 0 10px;
    }

    h1 {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 1px;
        margin-top: 45px;
    }

    p,
    .launch-text {
        font-size: 15px;
        line-height: 24px;
        padding: 0;
    }

    .launching {
        gap: 12px;
    }

    .launching h2 {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .line {
        width: 40px;
    }

}