/* Countdown Styles */
.countdown-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    min-width: 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 0 15px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 0.5rem;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 255, 255, 0.15);
}

.countdown-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .countdown-container {
        gap: 1rem;
        flex-wrap: nowrap;
    }
    
    .countdown-item {
        padding: 0.75rem 1.25rem;
        min-width: 80px;
        margin-bottom: 0;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
    font-weight: 600;
}

@media (min-width: 640px) {
    .countdown-label {
        font-size: 0.875rem;
        letter-spacing: 0.1em;
    }
}

/* Committee Slider Styles */
.committee-slider-container {
    position: relative;
    padding: 0 2rem;
    margin: 2rem 0;
}

.committee-slider {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.committee-slider-track {
    transition: transform 0.5s ease-in-out;
}

.committee-slide {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.committee-slide:hover {
    transform: translateY(-10px);
}

.slider-dot {
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-dot:hover {
    transform: scale(1.2);
}

.slider-dot.bg-primary {
    transform: scale(1.2);
}