body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
   background: linear-gradient(180deg,rgb(22, 135, 22),rgb(6, 45, 6), rgb(4, 32, 4));
    justify-content: center;
    align-items: center;
    text-align: center;
   
}


.container {
    max-width: 400px;
    padding: 20px;
    width: 90%; 
   
}


.logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 140px; 
    height: 140px; 
    border-radius: 50%; 
    padding: 8px;
    box-shadow: 0 0 15px rgba(4, 240, 36, 0.865); 
    border: 5px solid rgba(255, 255, 255, 0.986); 
    object-fit: cover;
}

.main-heading {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    letter-spacing: 2px;
    color: transparent;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: rgb(255 215 0 / var(--tw-text-opacity, 1));
    -webkit-background-clip:text;
    background-clip: text;
    display: inline-block;
    text-shadow: 0 0 10px  rgba(240, 240, 4, 0.865);
}

.sub-text {
    color: #ffffff; 
    font-size: 25px;
    margin-bottom: 30px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}


.timer-sec {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.timer-label {
    font-size: 22px;
    margin-bottom: 10px;
    color: rgb(255, 255, 255);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.timer {
    font-size: 45px;
    font-weight: bold;
    color: #f8f8f8;
}


.join-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #DC143C 100%);
    color: rgb(19, 2, 2);
    text-decoration: none;
    border-radius: 50px;
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(2, 193, 21, 0.751);
    width: 100%;
    max-width: 300px; 
    margin: 0 auto; 
    animation: pulse 2s infinite ease-in-out;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}



.join-button .fa-telegram {
    margin-right: 10px;
    font-size: 30px;
}


.line{
    border: none; 
    height: 3px;
    background-color:white;
    width: 88%; 
    margin: 20px auto;
}

.disclaimer {
    font-size: 18px;
    color: rgba(244, 245, 244, 0.596);
    margin-top: 30px;
    line-height: 1.2;
    padding: 0 10px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}



@keyframes pulse {
    0% {
        transform: scale(1); 
    }
    50% {
        transform: scale(1.05); 
        box-shadow: 0 0 20px rgba(137, 75, 8, 0.785); 
    }
    100% {
        transform: scale(1); 
    }
}



@media (max-width: 500px) {
    .main-heading {
        font-size: 30px;
    }
    .timer {
        font-size: 40px;
    }
    .join-button {
        padding: 12px 25px;
        font-size: 20px;
    }
    .logo img {
        width: 100px;
        height: 100px;
    }
}