/* ===== COUNTDOWN TIMER ===== */

.timer-section {
    padding: 60px 20px;
    background: #fdfdfd;
    text-align: center;
}

.timer-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(140, 184, 144, 0.2);
}

.timer-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.timer-value {
    font-size: 3.5rem;
    /* Increased size */
    font-weight: bold;
    color: #28a745;
    /* Solid Green */
    text-shadow: none;
    /* Removed glow */
    line-height: 1;
}

.timer-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 480px) {
    .timer-display {
        gap: 10px;
    }

    .timer-item {
        min-width: 65px;
    }

    .timer-value {
        font-size: 1.8rem;
    }

    .timer-label {
        font-size: 0.7rem;
    }
}