/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* CORRECCIÓN DEL MENÚ MÓVIL */

/* Hamburger Menu - VERSIÓN FINAL */
.hamburger {
    display: none; /* Oculto por defecto */
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Asegurar que el container tenga posición relativa */
.main-nav .container {
    position: relative;
}

/* MENÚ MÓVIL MEJORADO */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Mostrar en móviles */
    }

    .nav-links-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.95); /* Fondo más claro */
        backdrop-filter: blur(10px);
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid rgba(255, 255, 255, 0.1); /* Borde sutil */
    }

    .nav-links-wrapper.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links a {
        color: #ffffff;
        font-size: 1.2rem;
        padding: 15px 25px;
        text-decoration: none;
        border-radius: 25px;
        transition: all 0.3s ease;
        display: block;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Overlay para cerrar el menú al hacer clic fuera */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
/* Site Main */
.site-main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
/* Mejoras para hero con imagen de fondo */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.8) 100%);
    margin-top: -80px;
	background-size: cover;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #cccccc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

/* Albums Section */
.albums-section {
    padding: 100px 0;
    background: #111111;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.album-card {
    background: #222222;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-10px);
}

/* CORRECCIÓN PARA IMÁGENES PIXELADAS */
.album-cover {
    width: 100%;
    aspect-ratio: 1 / 1; /* Hace que sea perfectamente cuadrado */
    position: relative;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* CORRECCIONES PARA MEJORAR CALIDAD DE IMAGEN */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
}

.album-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #333333, #555555);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 1.2rem;
}

.album-info {
    padding: 20px;
}

.album-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.album-year {
    color: #999999;
    font-size: 0.9rem;
}

/* Music Player Section */
.music-player-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.music-player-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.music-player {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.player-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9333ea 0%, #3b82f6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.3);
}

.player-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* YouTube Player */
.youtube-player-container {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.current-song-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.current-song-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.current-song-artist {
    font-size: 14px;
    color: #a855f7;
    font-weight: 500;
}

.close-player {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-player:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Track List */
.track-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.track-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.track-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track-item:hover::before {
    opacity: 1;
}

.track-item:hover {
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.track-item.playing {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.3);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

.track-main {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.track-number {
    font-size: 14px;
    color: #888;
    font-weight: 500;
    min-width: 25px;
    text-align: center;
    font-family: 'Courier New', monospace;
}

.play-button {
    background: linear-gradient(135deg, #9333ea 0%, #3b82f6 100%);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

.play-button.playing {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.track-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.track-artist {
    font-size: 13px;
    color: #a855f7;
    font-weight: 500;
}

.track-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.track-links {
    display: flex;
    gap: 10px;
}

/* CORRECCIÓN PARA ICONOS DE SPOTIFY Y YOUTUBE EN TRACK LINKS */
.track-link {
    color: #888;
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.track-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.track-link.spotify:hover,
.hover-active {
    background: #1db954!important;
    color: white;
    border-color: #1db954;
}

.track-link.youtube:hover {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

/* CORRECCIÓN PARA SVG EN TRACK LINKS */
.track-link svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.track-link svg path {
    fill: white;
}

.track-duration {
    font-size: 14px;
    color: #888;
    font-weight: 500;
    font-family: 'Courier New', monospace;
    min-width: 45px;
    text-align: right;
}

.no-songs {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.add-song-link {
    color: #9333ea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.add-song-link:hover {
    color: #a855f7;
}

/* Responsive */
@media (max-width: 768px) {
    .music-player {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .player-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .player-header h3 {
        font-size: 24px;
    }
    
    .track-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .track-main {
        width: 100%;
        justify-content: flex-start;
    }
    
    .track-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .youtube-player-container {
        padding: 15px;
    }
    
    .current-song-title {
        font-size: 16px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #222222;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: #cccccc;
    transform: scale(1.1);
}

/* Footer */
.site-footer {
    background: #000000;
    padding: 50px 0 20px;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-social h4 {
    margin-bottom: 15px;
}

.footer-social .social-links {
    justify-content: flex-start;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
    color: #666666;
}

/* Content Wrapper (para páginas regulares) */
.content-wrapper {
    padding: 50px 0;
    min-height: 70vh;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.post-card {
    background: #222222;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-content h2 a {
    color: #ffffff;
    text-decoration: none;
}

.post-content h2 a:hover {
    color: #cccccc;
}

.post-meta {
    color: #999999;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.read-more {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.read-more:hover {
    border-bottom-color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links-wrapper.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 15px 25px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }

    .music-player {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-links-wrapper {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Estilos adicionales para álbumes y canciones */
.album-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* CORRECCIÓN PARA ICONOS DE SPOTIFY Y YOUTUBE EN ÁLBUMES */
.album-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.album-link:hover {
    background: #cccccc;
    transform: scale(1.1);
}

/* CORRECCIÓN ESPECÍFICA PARA SVG EN ÁLBUMES */
.album-link.spotify {
    background: #1db954;
    color: white;
}

.album-link.youtube {
    background: #ff0000;
    color: white;
}

.album-link svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.album-link svg path {
    fill: white;
}

.track-links {
    display: flex;
    gap: 10px;
    margin-left: 10px;
}

.track-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.track-link:hover {
    background: #cccccc;
    transform: scale(1.1);
}

.track-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.track-title {
    flex: 1;
}

/* Estilos para iconos sociales - Agregar a tu main.css */

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Colores específicos para cada red social */
.social-link.facebook:hover {
    background: #1877F2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

.social-link.spotify:hover {
    background: #1DB954;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(29, 185, 84, 0.4);
}

.social-link.youtube:hover {
    background: #FF0000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.social-link.tiktok:hover {
    background: #000000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.social-link.soundcloud:hover {
    background: #FF5500;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 85, 0, 0.4);
}

.social-link.bandcamp:hover {
    background: #629aa0;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(98, 154, 160, 0.4);
}

.social-link.twitter:hover {
    background: #1DA1F2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(29, 161, 242, 0.4);
}

/* Estilos para la sección de contacto */
.contact-section {
    background: #2c2c2c;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Footer actualizado */
.footer-social {
    text-align: center;
}

.footer-social h4 {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-section h2 {
        font-size: 2.5em;
    }
    
    .contact-section p {
        font-size: 1.1em;
    }
}

/* Animaciones adicionales */
@keyframes socialPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.social-link:active {
    animation: socialPulse 0.3s ease-in-out;
}

/* Estilos para cuando no hay iconos */
.social-links:empty::after {
    content: "Configura tus redes sociales en Apariencia > SIVL Config";
    color: #999;
    font-style: italic;
    display: block;
    text-align: center;
}

a.album-title-link {
    color: inherit;
}

/* CORRECCIÓN CORRECTA PARA ICONO DE SPOTIFY */

/* Aumentar el tamaño del SVG de Spotify para que se vea completo */
.album-link.spotify svg {
    width: 20px !important;
    height: 20px !important;
    fill: black !important;
    color: black !important;
}

.track-link.spotify svg {
    width: 18px !important;
    height: 18px !important;
    fill: black !important;
    color: black !important;
}

.album-link.spotify svg path,
.track-link.spotify svg path {
    fill: black !important;
    color: black !important;
}

/* Asegurar que el contenedor tenga color negro para currentColor */
.album-link.spotify,
.track-link.spotify {
    color: black !important;
    background: #1db954 !important; /* Verde oficial de Spotify */
}

/* Aumentar ligeramente el tamaño del contenedor si es necesario */
.album-link.spotify {
    width: 32px !important;
    height: 32px !important;
}

/* Solución específica para el atributo currentColor */
.album-link.spotify svg[fill="currentColor"],
.track-link.spotify svg[fill="currentColor"] {
    fill: black !important;
}

.album-link.spotify svg path[fill="currentColor"],
.track-link.spotify svg path[fill="currentColor"] {
    fill: black !important;
}

/* CORRECCIÓN PARA ICONOS EN TRACK LINKS */
.track-link {
    color: #888;
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.track-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* CORRECCIÓN ESPECÍFICA PARA SPOTIFY */
.track-link.spotify {
    background: #1db954 !important;
    color: white !important;
    border-color: #1db954 !important;
}

.track-link.spotify:hover {
    background: #1ed760 !important;
    color: white !important;
    border-color: #1ed760 !important;
}

.track-link.spotify svg {
    width: 16px !important;
    height: 16px !important;
    fill: white !important;
}

.track-link.spotify svg path {
    fill: white !important;
}

/* CORRECCIÓN ESPECÍFICA PARA YOUTUBE */
.track-link.youtube {
    background: #ff0000 !important;
    color: white !important;
    border-color: #ff0000 !important;
}

.track-link.youtube:hover {
    background: #ff1a1a !important;
    color: white !important;
    border-color: #ff1a1a !important;
}

.track-link.youtube svg {
    width: 16px !important;
    height: 16px !important;
    fill: white !important;
}

.track-link.youtube svg path {
    fill: white !important;
}

/* CORRECCIÓN PARA ÁLBUMES TAMBIÉN */
.album-link.spotify {
    background: #1db954 !important;
    color: white !important;
}

.album-link.spotify:hover {
    background: #1ed760 !important;
    color: white !important;
}

.album-link.spotify svg {
    width: 16px !important;
    height: 16px !important;
    fill: white !important;
}

.album-link.spotify svg path {
    fill: white !important;
}

.album-link.youtube {
    background: #ff0000 !important;
    color: white !important;
}

.album-link.youtube:hover {
    background: #ff1a1a !important;
    color: white !important;
}

.album-link.youtube svg {
    width: 16px !important;
    height: 16px !important;
    fill: white !important;
}

.album-link.youtube svg path {
    fill: white !important;
}

/* ASEGURAR QUE NO HAY CONFLICTOS CON OTROS ESTILOS */
.track-link svg[fill="currentColor"],
.album-link svg[fill="currentColor"] {
    fill: white !important;
}

.track-link svg path[fill="currentColor"],
.album-link svg path[fill="currentColor"] {
    fill: white !important;
}

