*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#050505;
    color:white;
    min-height:100vh;
    overflow-x:hidden;
}

.background{
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top left,#0077ff44,transparent 40%),
    radial-gradient(circle at bottom right,#0066ff33,transparent 40%);
    animation:moveBg 12s infinite alternate;
}

@keyframes moveBg{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.2);
    }
}

.container{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    padding:50px 20px;
    text-align:center;
}

.logo{
    width:180px;
    max-width:90%;
    margin-bottom:20px;
    filter:drop-shadow(0 0 25px #0077ff);
}

h1{
    font-size:3rem;
    color:white;
    margin-bottom:15px;
}

.subtitle{
    color:#d6d6d6;
    margin-bottom:40px;
    font-size:1.1rem;
}

#countdown{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.time-box{
    background:white;
    color:black;
    width:130px;
    padding:20px;
    border-radius:15px;
    box-shadow:0 0 20px rgba(0,119,255,.3);
}

.time-box span{
    display:block;
    font-size:2rem;
    font-weight:bold;
    color:#0077ff;
}

.time-box small{
    font-size:.9rem;
}

.progress-container{
    width:90%;
    max-width:800px;
    margin:40px auto;
    height:14px;
    background:#222;
    border-radius:50px;
    overflow:hidden;
}

.progress-bar{
    height:100%;
    width:0;
    background:linear-gradient(90deg,#0077ff,#00c3ff);
    border-radius:50px;
}

.funny-text{
    font-size:1.1rem;
    color:#80bfff;
    margin-bottom:30px;
}

.launch-box{
    display:inline-block;
    background:#101010;
    border:1px solid #0077ff;
    padding:15px 25px;
    border-radius:10px;
    margin-bottom:30px;
}

.developer{
    margin-top:20px;
    color:#d0d0d0;
}

.developer a{
    color:#4da3ff;
    text-decoration:none;
    font-weight:bold;
}

.developer a:hover{
    color:white;
}

@media(max-width:768px){

    h1{
        font-size:2rem;
    }

    .time-box{
        width:110px;
    }

}