*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #fff;

}

.background-blur-layer {
    background-image: url(newbg.jpg); 
    background-size: cover;
    background-position: center; 
    width: 100%;
    height: 100%;
    position: fixed;   
    filter: blur(5px);
    z-index: -1;
}


.container {
    width: 90%;
    max-width: 400px; 
    padding: 20px;
    background: rgba(255, 255, 255, 0.845);
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); 
    border-top: 8px solid #DC143C; 
    margin: 20px 0;
   
}

.header-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    
}

.logo-box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px #9b8402, inset 0 0 10px #FFC107;
    border: 3px solid #000000;
}

.logo-img {
    width: 80px; 
    height: 80px;
     border-radius: 50%;
    object-fit: contain;
}

.main {
    font-size: 25px;
    font-weight: 900;
   background: linear-gradient(135deg, #DC143C 5%, #FFA500 50%, #DC143C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    margin-top: 0;
    margin-bottom: 10px;
   font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.subscribers {
    font-size: 1.2em;
    font-weight: 900;
    color: #d31313;
    margin-bottom: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.highlight-box {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #DC143C 100%);
    color: #f7f5f5;
    padding: 18px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 1.2;
    text-align: left; 
    color: black;
}
.list-item {
    display: block;
    margin-bottom: 8px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 14px
}

/* ✅ नया CSS: यह केवल 'What You'll Get:' शीर्षक को केंद्र में रखता है */
.center-title {
    display: block; 
    text-align: center;
    font-weight: 900;
    margin-bottom: 3px;
    text-decoration: underline;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 19px;
}


.join-button {
    display: block;
    width: 100%;
    padding: 15px 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #DC143C 100%);
    color: black;
    text-decoration: none;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.2em;
    font-weight: 700;
    border-radius:40px;
    box-shadow: 0 5px 20px rgba(254, 3, 3, 0.8);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 20px;
    display: flex; 
    justify-content: center;
    align-items: center;
    border: 3px solid black;
    font-weight:900;
    

}

/* Telegram Icon Spacing */
.join-button i {
    margin-right: 10px; 
    font-size: 1.4em; 
}

.join-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 25px rgb(10, 121, 121);
}



.button-container {
     display: flex;
     gap: 20px; 
     justify-content: center;
 }

.custom-button {
    display: flex;
    align-items: center; 
    padding: 15px 20px;
    border-radius: 30px; 
    font-size: 16px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
    /* background-color: rgb(23, 89, 85);  */
     background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #DC143C 100%);; 
     
}

      
.dis{
    padding: 15px 10px;
    color: #131313;
    font-size: 10px;
    opacity: 0.7;
}


.offer-text {
    font-size: 1.1em;
    color: #da1616;
    font-weight: 700;
    text-transform: uppercase;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}


@media (min-width: 600px) {
    .container {
        padding: 20px;
    }

    .main-title {
        font-size: 2.5em;
    }

    .countdown-timer {
        font-size: 4.5em;
    }

    .join-button {
        padding: 18px 10px;
        font-size: 1.2em;
    }
}