 /* Estilos para el reproductor de TV */
 .tv-player-container {
    position: fixed;
    bottom: 140px;
    right: 20px;
    z-index: 999;
    transition: all 0.3s ease;
}

.tv-player {
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
    width: 320px;
    display: none;
}

.tv-player.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.tv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tv-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.tv-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
}

.tv-station {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-secondary);
    text-align: center;
}

.tv-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tv-main-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 10px;
}

.tv-volume-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.tv-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.tv-btn:hover {
    transform: scale(1.1);
}

.tv-btn i {
    font-size: 1rem;
}

.tv-social-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tv-toggle {
    position: fixed;
    bottom: 80px;
    right: 80px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.tv-toggle:hover {
    transform: scale(1.1);
}

.tv-toggle i {
    font-size: 1.5rem;
}

.tv-video-container {
    width: 100%;
    height: 180px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

/* Ajustes para cuando ambos reproductores están abiertos */
.radio-player-container.active + .tv-player-container .tv-toggle {
    right: 140px;
}

@media (max-width: 768px) {
    .tv-player {
        width: 280px;
        bottom: 120px;
        right: 15px;
    }

    .tv-toggle {
        bottom: 70px;
        right: 80px;
    }

    .radio-player-container.active + .tv-player-container .tv-toggle {
        right: 140px;
    }
}

@media (max-width: 576px) {
    .tv-player {
        width: 260px;
    }

    .tv-toggle {
        right: 70px;
    }

    .radio-player-container.active + .tv-player-container .tv-toggle {
        right: 130px;
    }
}