.edt-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

/* Blue Theme (Default) */
.edt-container h1 {
    color: #2271b1 !important; /* Changed to blue */
    font-size: 2.8em !important;
    margin: 0 0 20px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-shadow: 0 0 8px rgba(34, 113, 177, 0.5) !important;
    padding-bottom: 10px !important;
}

.edt-container h1 a {
    color: #2271b1 !important; /* Ensure link is blue */
    text-decoration: none; /* Remove default underline */
}

.edt-container h1 a:hover {
    color: #ff0000 !important; /* Red on hover */
    text-decoration: none; /* Optional: underline on hover for clarity */
}

.edt-container h2 {
    color: #222222 !important;
    font-size: 2.8em !important;
    margin: 0 0 20px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-shadow: 0 0 8px rgba(34, 113, 177, 0.5) !important;
    padding-bottom: 10px !important;
}

#edt-download-count {
    font-size: 1.0em !important;
    font-weight: bold !important;
    font-style: italic !important;
    color: #ffffff !important;
    background: #2271b1 !important;
    border-radius: 25px !important;
    padding: 10px 20px !important;
    margin: 15px auto 25px !important;
    display: inline-block !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) !important;
}

/* Green Theme (Uncomment to use, comment out Blue Theme above) */
/*
.edt-container h1 {
    color: #28a745 !important;
    font-size: 2.8em !important;
    margin: 0 0 20px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-shadow: 0 0 8px rgba(40, 167, 69, 0.5) !important;
    border-bottom: 3px solid #218838 !important;
    padding-bottom: 10px !important;
    animation: pulse 1.5s ease-in-out infinite !important;
}

#edt-download-count {
    font-size: 1.4em !important;
    font-weight: bold !important;
    font-style: italic !important;
    color: #ffffff !important;
    background: #28a745 !important;
    border-radius: 25px !important;
    padding: 10px 20px !important;
    margin: 15px auto 25px !important;
    display: inline-block !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) !important;
    animation: pulse 1.5s ease-in-out infinite !important;
}
*/

#edt-countdown {
    font-size: 1.5em;
    font-weight: bold;
    margin: 20px 0;
    color: #2271b1;
}

#edt-status {
    color: #646970;
    font-style: italic;
    margin: 10px 0;
}

/* Updated Download Button Style */
.edt-container .edt-download-button-new {
    display: inline-flex;
    align-items: center;
    background: #34c759;
    color: white !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-family: inherit;
    transition: background 0.3s, opacity 0.3s;
}

.edt-container .edt-download-button-new::before {
    content: '\2193'; /* Unicode for down arrow */
    margin-right: 8px;
    font-size: 1.2em;
}

.edt-container .edt-download-button-new:not(:disabled):hover {
    background: #2ea44f;
    cursor: pointer; /* Ensure pointer cursor only when not disabled */
}

.edt-container .edt-download-button-new:disabled {
    background: #cccccc !important; /* Gray background */
    color: #666666 !important; /* Darker text for better contrast */
    opacity: 0.6; /* Reduce opacity for disabled state */
    cursor: not-allowed !important; /* Ensure not-allowed cursor */
}

.edt-container .edt-download-button-new:disabled:hover {
    cursor: not-allowed !important; /* Reinforce not-allowed cursor on hover */
    background: #cccccc !important; /* Prevent hover background change */
}

.edt-container .edt-download-button-new:disabled::before {
    color: #666666; /* Ensure the arrow matches the text color */
}

/* AdSense container styles */
.edt-adsense-container {
    margin: 20px auto;
    text-align: center;
    max-width: 728px; /* Common ad width */
    width: 100%;
}

/* Animation for pulse effect */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Alternative fade-in animation (uncomment to use instead of pulse) */
/*
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.edt-container h1 {
    animation: fadeIn 1s ease-in !important;
}
#edt-download-count {
    animation: fadeIn 1s ease-in 0.3s !important;
}
*/

/* Header with Icon */
.edt-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.edt-icon-download::before {
    content: '\2601'; /* Unicode for cloud */
    font-size: 2em;
    margin-right: 10px;
    color: #2271b1;
}

/* Password Notice and FAQs Link */
.edt-password-notice {
    color: #ff0000;
    font-weight: bold;
    margin: 10px 0;
}

.edt-faqs-link a {
    color: #2271b1;
    text-decoration: underline;
}

.edt-faqs-link a:hover {
    color: #135e96;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .edt-container h1 {
        font-size: 2.2em !important;
    }
    
    #edt-download-count {
        font-size: 1.2em !important;
        padding: 8px 16px !important;
    }
    
    .edt-container {
        padding: 20px;
    }
    
    .edt-adsense-container {
        max-width: 100%;
    }
}