/* Estilos para el slider de temporadas */
.seasons-swiper-container {
    margin-bottom: 30px;
}

.seasons-slider .swiper-slide {
    width: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seasons-slider .swiper-wrapper {
    justify-content: center;
}

.season-tab-button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.season-tab-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(242, 242, 242, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 242, 242, 0.3);
}

.season-tab-button.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: #f2f2f2;
    box-shadow: 0 0 10px rgba(242, 242, 242, 0.3);
    transform: scale(1.02);
}

.seasons-button-next,
.seasons-button-prev {
    color: #fff;
    background: rgba(252, 3, 243, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.seasons-button-next:hover,
.seasons-button-prev:hover {
    background: linear-gradient(135deg, #fc03f3 0%, #c103e9 100%);
    box-shadow: 0 5px 15px rgba(252, 3, 243, 0.5);
}

.seasons-button-next::after,
.seasons-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.seasons-button-next.swiper-button-disabled,
.seasons-button-prev.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .seasons-swiper-container {
        padding: 15px 35px !important;
    }

    .season-tab-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .seasons-button-next,
    .seasons-button-prev {
        width: 35px;
        height: 35px;
    }

    .seasons-button-next::after,
    .seasons-button-prev::after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .seasons-swiper-container {
        padding: 10px 30px !important;
    }

    .season-tab-button {
        padding: 8px 16px;
        font-size: 13px;
    }

    .seasons-button-next,
    .seasons-button-prev {
        width: 30px;
        height: 30px;
    }

    .seasons-button-next::after,
    .seasons-button-prev::after {
        font-size: 14px;
    }
}

/* Estilos para el select móvil */
.mobile-season-select-container {
    display: none;
    padding: 20px 15px;
    margin-bottom: 20px;
}

.season-select-label {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    margin-right: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.season-select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
    outline: none;
}

.season-select:focus {
    border-color: #fc03f3;
    box-shadow: 0 0 0 3px rgba(252, 3, 243, 0.2);
}

.season-select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

/* Mostrar select en móvil, ocultar slider */
@media (max-width: 767px) {
    .mobile-season-select-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .desktop-season-slider {
        display: none !important;
    }

    .season-select-label {
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .season-select {
        font-size: 14px;
        padding: 10px 20px;
        width: 100%;
        max-width: 300px;
    }
}

/* Ocultar select en desktop, mostrar slider */
@media (min-width: 768px) {
    .mobile-season-select-container {
        display: none !important;
    }

    .desktop-season-slider {
        display: block !important;
    }
}

/* Animaciones para el indicador de "Reproduciendo ahora" */
@keyframes equalizer1 {
    0%, 100% { height: 40%; }
    50% { height: 80%; }
}

@keyframes equalizer2 {
    0%, 100% { height: 70%; }
    50% { height: 30%; }
}

@keyframes equalizer3 {
    0%, 100% { height: 50%; }
    50% { height: 90%; }
}

.eq-bar-1 {
    animation: equalizer1 0.8s ease-in-out infinite !important;
}

.eq-bar-2 {
    animation: equalizer2 0.8s ease-in-out infinite 0.2s !important;
}

.eq-bar-3 {
    animation: equalizer3 0.8s ease-in-out infinite 0.4s !important;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

.playing-badge {
    animation: pulse-glow 3s ease-in-out infinite !important;
}

.now-playing-overlay {
    transition: opacity 0.3s ease;
}
