/* Estilos oscuros para la sección de música */
.gallery-section {
    background: linear-gradient(145deg, #1a1a1a, #121212);
    color: #fff;
    padding: 4rem 0;
}

.gallery-section h2 {
    color: #f1f1f1;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.gallery-section h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e53);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Estilos para las tarjetas de música */
.music-card {
    background: #222;
    border: none !important;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.music-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.music-card .card-body {
    background: #222;
    border-top: none !important;
    padding: 1.5rem;
}

.music-card .card-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.music-card .card-text {
    color: #aaa;
    font-size: 0.9rem;
}

.music-card .listen-text {
    color: #ff8e53;
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    transition: all 0.3s ease;
}

.music-card:hover .listen-text {
    color: #ff6b6b;
}

/* Iconos de redes sociales */
.social_media {
    transition: all 0.3s ease;
}

.social_media:hover {
    transform: scale(1.15);
}

/* Estilos para los modales */
.music-modal .modal-content {
    background: #1a1a1a;
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.music-modal .modal-header {
    background: #121212;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 1.5rem;
}

.music-modal .modal-title {
    color: #ff6b6b;
    font-weight: 600;
}

.music-modal .modal-body {
    padding: 2rem;
    background: #1a1a1a;
}

.music-modal .btn-close {
    color: #fff;
    opacity: 0.8;
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Estilos para el reproductor de audio */
.music-modal audio {
    width: 100%;
    border-radius: 50px;
    background: #333;
    margin-bottom: 1.5rem;
}

.music-modal audio::-webkit-media-controls-panel {
    background: linear-gradient(145deg, #333, #222);
}

.music-modal audio::-webkit-media-controls-play-button,
.music-modal audio::-webkit-media-controls-mute-button {
    background-color: #ff6b6b;
    border-radius: 50%;
}

.music-modal audio::-webkit-media-controls-current-time-display,
.music-modal audio::-webkit-media-controls-time-remaining-display {
    color: #fff;
}

/* Animación de pulso para el botón de escuchar */
@keyframes pulse {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.8;
    }
}

.pulse-text {
    animation: pulse 1.5s infinite;
}

/* Imagen del artista en el modal */
.artist-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #ff6b6b;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.artist-image:hover {
    transform: scale(1.05);
    border-color: #ff8e53;
}