/* Download Countdown Styles */
.download-countdown-wrapper {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.countdown-message {
    font-size: 1.125rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 1.5rem;
}

.countdown-timer {
    margin-bottom: 1.5rem;
}

.countdown-number {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.countdown-progress {
    width: 100%;
    height: 0.5rem;
    background-color: #e5e7eb;
    border-radius: 0.25rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 0.25rem;
    transition: width 1s ease-in-out;
}

.direct-download-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #3b82f6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.direct-download-link:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.direct-download-link:active {
    transform: translateY(0);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .download-countdown-wrapper {
        background: #1f2937;
        border-color: #374151;
        color: #f9fafb;
    }
    
    .countdown-message {
        color: #f9fafb;
    }
    
    .countdown-progress {
        background-color: #374151;
    }
}

/* Mobile responsive */
@media (max-width: 640px) {
    .download-countdown-wrapper {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .countdown-number {
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
        font-size: 1.5rem;
    }
    
    .countdown-message {
        font-size: 1rem;
    }
}
