* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Flexbox setup for centering the card */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 20px;
    position: relative; 
    overflow-x: hidden; 
}

/* 🖼️ FIXED AND BLURRED BACKGROUND (Using ::before as requested) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(bgpic.jpg); 
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    filter: blur(5px);
    z-index: -1;
    /* Optional: थोड़ा काला ओवरले जोड़ें ताकि कार्ड ज़्यादा पॉप-अप हो */
    background-color: rgba(0, 0, 0, 0.3); 
    background-blend-mode: overlay;
}

.channel-card {
    /* Flexbox centering के लिए margin हटा दें */
    /* margin: 40px auto; */ 
    
    /* 🌑 DARK THEME: Pure black/near-black background */
    background-color: #090909; 
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    /* Darker, better shadow for dark theme */
    box-shadow: 0 15px 40px rgba(248, 7, 7, 0.639); 
    color: white; /* Ensure text is white */
    position: relative;
    z-index: 1;
    opacity: 0.7; /* Opacity को 1.0 करें ताकि कंटेंट साफ दिखे */
    border: 1px solid rgba(255, 8, 8, 0.947); /* हल्का बॉर्डर */
}

.logo-placeholder {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px auto;
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #009dff; /* लोगो को नीले रंग से हाइलाइट करें */
}

/* 🌈 LINEAR GRADIENT FOR TEXT */
.name {
    font-size: 2rem; /* थोड़ा बड़ा फ़ॉन्ट */
    font-weight: 900;
    margin-bottom: 10px;
    
    /* Gradient Color: Neon/Vibrant look */
    background-image: linear-gradient(to right, #06f70e, #058af6); /* हरा से नीला ग्रेडिएंट */
    
    /* Text Clipping for Gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    
    color: white; /* Fallback */
}
/* ---------------------------------- */

.subscribers {
    color: #f1f504; /* Slightly muted white for sub-text */
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.15rem; /* थोड़ा छोटा */
    color: #e0e0e0; /* White/Off-white for features */
}

.checkmark {
    background-color: #009dff; /* Blue checkmark for contrast */
    color: white;
    margin-right: 10px;
    font-weight: bold;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* गोल चेकबॉक्स */
    font-size: 0.9rem;
}

.hurry {
    color: #f8ef04; /* Neon yellow */
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- JOIN BUTTON (Continuous Zoom Animation Modified) --- */
.join-button {
    display: block;
    width: 100%;
    padding: 18px 15px;
    background-color: #009dff; /* Vibrant Blue */
    color: white; /* White text on blue button */
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 900;
    transition: 0.3s ease; 
    box-shadow: 0 8px 20px rgba(0, 157, 255, 0.5);
    
    animation: breathing-zoom 0.9s infinite ease-in-out; 
}

.join-button:hover {
    background-color: #007bff;
    transform: scale(1.03); 
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.7);
    animation: none; 
}
/* -------------------------------------------------------- */

/* --- KEYFRAMES for CONTINUOUS ZOOM ANIMATION --- */
@keyframes breathing-zoom {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 157, 255, 0.4);
    }
    50% {
        transform: scale(1.02); 
        box-shadow: 0 10px 20px rgba(0, 157, 255, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 157, 255, 0.4);
    }
}
/* ----------------------------------------------- */


@media (max-width: 480px) {
    .name {
        font-size: 1.6rem;
    }
    .feature-item {
        font-size: 1.05rem;
    }
    .join-button {
        font-size: 1.2rem;
        padding: 15px 10px;
    }
    .logo-placeholder {
        width: 110px;
        height: 110px;
    }
}