*{
    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 #520b60d6; 
    margin: 20px 0;
   
}

.header-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    
}

.logo-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px #FFD700, inset 0 0 10px #FFC107;
    border: 5px solid #00e1ff;
}

.logo-img {
    width: 80px; 
    height: 80px;
     border-radius: 50%;
    object-fit: contain;
}

.main {
    font-size: 25px;
    font-weight: 900;
   background: linear-gradient(135deg, #5f79e8 0%, #663992 50%, #b817ca 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, #667eea 0%, #764ba2 100%);;
    color: #f7f5f5;
    padding: 18px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 1.2;
    text-align: left; 
}
.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: radial-gradient(circle at top, #540b94 30%, #470a48 70%); 
    color: #f1f1f1;
    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;
}

/* 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: 13px;
    font-weight: bold;
    color: white;
    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: radial-gradient(circle at top, #540b94 30%, #470a48 70%); 
     font-family:font-family: Cambria, Cochin, Georgia, 'Segoe UI Emoji', 'Apple Color Emoji', sans-serif;
}

      
.dis{
    padding: 15px 10px;
    color: #5f79e8;
    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;
    }
}