*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background: #003b74;
    color:#fff;
    text-align:center;
    padding:20px;
}

.container{
    width:100%;
    max-width:700px;
}

.logo{
    max-width:300px;
    margin:0 auto 15px;
}

h1{
    font-size:clamp(28px, 6vw, 42px);
    margin-bottom:10px;
}

p{
    font-size:clamp(14px, 3vw, 16px);
    opacity:0.8;
    margin-bottom:30px;
}

/* Countdown */
.countdown{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.box{
    background:rgba(255,255,255,0.1);
    padding:15px;
    border-radius:10px;
    min-width:70px;
    flex:1 1 70px;
    max-width:100px;
}

.box h2{
    font-size:clamp(20px, 5vw, 28px);
}

.box span{
    font-size:12px;
    opacity:0.7;
}

/* Button */
.btn{
    display:inline-block;
    padding:12px 25px;
    background: #fb6608;
    color: #fff;
    border-radius:30px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
    margin-bottom:20px;
}

.btn:hover{
    background:#fff;
    color: #000;
}

/* 🔥 Social Icons */
.social{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:20px;
}

.social a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    color:#fff;
    font-size:22px;
    transition:0.3s;
    text-decoration: none;
}

.social a:hover{
    background: #fb6608;
    color: #fff;
    transform:translateY(-3px);
}

/* Footer */
.footer{
    margin-top:20px;
    font-size:13px;
    opacity:0.7;
    line-height:1.6;
}

img{
    max-width:100%;
}

.footer a {
    color: #fff;
    margin: 0 5px 10px;
    text-decoration: none;
    display: inline-block;
}
/* 🔥 Video Background */
.video-bg{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-2;
    overflow:hidden;
}

.video-bg video, .video-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* 🔥 Dark Overlay */
.video-bg::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: #003b74eb;
    z-index:1;
}

/* Remove old background */
body{
    background:none !important;
}

/* Mobile */
@media (max-width:480px){
    .btn{
        width:100%;
    }
    .logo {
    max-width: 230px;
}
}