/* Countdown Timer Styles */
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.countdown-value {
    font-family: 'Courier New', monospace;
    font-size: 3rem;
    font-weight: bold;
    color: #00f5ff;
    background: rgba(0, 245, 255, 0.1);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 100px;
    text-align: center;
    box-shadow:
        0 0 20px rgba(0, 245, 255, 0.3),
        inset 0 0 20px rgba(0, 245, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.countdown-value:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 30px rgba(0, 245, 255, 0.5),
        inset 0 0 30px rgba(0, 245, 255, 0.2);
}

.countdown-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .countdown-value {
        font-size: 2rem;
        padding: 0.75rem 1rem;
        min-width: 70px;
    }

    .countdown-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .countdown-value {
        font-size: 1.5rem;
        padding: 0.5rem 0.75rem;
        min-width: 60px;
    }
}