*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    color:#fff;
    overflow-x:hidden;
    min-height:100vh;
    position:relative;
    
    display:flex;
    flex-direction:column;
    

}

/* ========================= */
/* Background */
/* ========================= */

.bg-image{

    position:fixed;
    inset:0;

    background:url("background.jpg") center center;
    background-size:cover;

    filter:blur(10px);

    transform:scale(1.1);

    z-index:-3;

}

.overlay{

    position:fixed;
    inset:0;

    background:linear-gradient(
        rgba(20,120,40,.78),
        rgba(18,170,80,.80)
    );

    z-index:-2;

}

.background-text{

    position:fixed;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    font-size:180px;

    font-weight:900;

    color:rgba(255,255,255,.04);

    white-space:nowrap;

    letter-spacing:18px;

    user-select:none;

    z-index:-1;

}

/* ========================= */

.hero{

    min-height:100vh;
    padding:40px 20px;
     flex:1;

}

.glass-card{

    max-width:850px;

    width:100%;

    padding:60px;

    text-align:center;

    border-radius:30px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.2);

    box-shadow:0 20px 60px rgba(0,0,0,.25);
    margin:0 auto ;

}

/* ========================= */
/* COMING SOON */
/* ========================= */

.coming-soon{

    display:inline-block;

    background:linear-gradient(90deg,#00d84d,#9dff00);

    color:#fff;

    font-size:18px;

    font-weight:700;

    letter-spacing:8px;

    padding:16px 40px;

    border-radius:100px;

    margin-bottom:35px;

    animation:pulse 2s infinite;

    box-shadow:
        0 0 25px rgba(0,255,100,.6);

}

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.08);

    }

    100%{

        transform:scale(1);

    }

}

h1{

    font-size:84px;

    font-weight:800;

    letter-spacing:3px;

    text-shadow:
        0 0 20px rgba(255,255,255,.4),
        0 0 40px rgba(0,255,100,.4);

}

.subtitle{

    font-weight:400;

    color:#e9ffe8;

}

.lead{

    font-size:22px;

}

.description{

    color:#f5f5f5;

    line-height:1.9;

}

/* ========================= */
/* Countdown */
/* ========================= */

.countdown{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin:45px 0;

}

.time-box{

    width:100px;

    height:100px;

    border-radius:20px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.2);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    backdrop-filter:blur(15px);

}

.time-box h2{

    margin:0;

    font-size:34px;

    font-weight:700;

}

.time-box span{

    font-size:14px;

    opacity:.9;

}

/* ========================= */

.btn-success{

    background:#21d654;

    border:none;

    padding:15px 40px;

    font-weight:600;

    transition:.3s;

}

.btn-success:hover{

    background:#17b947;

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(0,255,100,.4);

}

/* ========================= */
/* Footer */
/* ========================= */

footer{

    background:rgba(0,0,0,.25);

    backdrop-filter:blur(20px);

    padding:45px 0;

}

.footer-icon{

    font-size:32px;

    margin-bottom:10px;

    color:#b6ffb5;

}

footer h6{

    margin-top:10px;

    font-weight:600;

}

footer p{

    color:#efefef;

    margin-bottom:0;

}

footer hr{

    border-color:rgba(255,255,255,.15);

    margin:30px 0;

}

.copyright{

    text-align:center;

    opacity:.85;

    margin-bottom:0;

}

/* ========================= */
/* Responsive */
/* ========================= */

@media(max-width:768px){

    .glass-card{

        padding:35px 25px;

    }

    .coming-soon{

        font-size:15px;

        letter-spacing:5px;

        padding:14px 25px;

    }

    h1{

        font-size:48px;

    }

    .subtitle{

        font-size:22px;

    }

    .lead{

        font-size:18px;

    }

    .description{

        font-size:15px;

    }

    .background-text{

        font-size:70px;

        letter-spacing:8px;

    }

    .time-box{

        width:75px;

        height:75px;

    }

    .time-box h2{

        font-size:24px;

    }

    .time-box span{

        font-size:12px;

    }

    .btn{

        width:100%;

    }

}
