*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background: linear-gradient(135deg,#0f172a,#0a2c2c,#0f172a);
    padding:20px;
}

/* CARD */
.card{
    width:95%;
    max-width:600px;
    padding:30px 20px;
    background: linear-gradient(145deg,#1e293b,#0f172a);
    border-radius:30px;
    text-align:center;
    box-shadow: 0 0 60px rgba(0,255,170,0.1);
    color:white;
}

/* Badge */
.badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:25px;
    background:#1f513e;
    color:#6ee7b7;
    font-size:14px;
    margin-bottom:12px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}

/* Profile Image */
.profile-img{
    width:120px;
    height:120px;
    margin:0 auto 20px;
    border-radius:50%;
    overflow:hidden;
    border:4px solid #22c55e;
}

.profile-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Title */
.card h1{
    font-size:25px;
    margin-bottom:10px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}

.subtitle{
    color:#cbd5e1;
    margin-bottom:12px;
    font-size:13px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Countdown */
.countdown{
    font-size:12px;
    margin-bottom:17px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.countdown span{
    color:#22c55e;
    font-weight:bold;
    font-size:22px;
}

/* Button */
.btn{
    background:#22c55e;
    color:black;
    padding:18px 35px;
    border:none;
    border-radius:15px;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
    transition:0.3s;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.btn:hover{
    background:#16a34a;
    transform:scale(1.05);
}

/* Info text */
.info-text{
    margin-top:10px;
    color:#cbd5e1;
     font-size:12px;
}

hr{
    margin:20px 0;
    border:0.5px solid rgba(255,255,255,0.1);
}

/* Disclaimer */
.disclaimer{
    font-size:13px;
    color:#9ca3af;
    line-height:1.3;
}

/* Responsive */
@media(max-width:500px){
    .card h1{
        font-size:22px;
    }

    .profile-img{
        width:100px;
        height:100px;
    }
}
