/* Estilos generales - Diseño revolucionario y modernista */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

:root {
    --primary: #8a2be2; /* Violeta intenso */
    --secondary: #00c2ff; /* Azul neón */
    --accent: #ff0080; /* Rosa neón */
    --dark: #0a0a14;
    --light: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(10, 10, 20, 0.8);
    --shadow-neon: 0 0 15px rgba(138, 43, 226, 0.5), 0 0 30px rgba(0, 194, 255, 0.3);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.15);
    --gradient-main: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-accent: linear-gradient(45deg, var(--accent), var(--secondary));
    --border-radius: 16px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: var(--dark);
    color: var(--light);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 194, 255, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Estilos del encabezado del artista - Glassmorfismo avanzado */
.artist-header {
    padding: 3rem 2rem;
    background: var(--gradient-main);
    position: relative;
    overflow: hidden;
}

.artist-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path d="M0,0 L100,100 M0,100 L100,0" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    z-index: 0;
    opacity: 0.3;
    animation: backgroundShift 20s linear infinite;
}

@keyframes backgroundShift {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.artist-info {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    background: var(--glass);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-neon);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-neon);
    border: 4px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(138, 43, 226, 0.5); }
    100% { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 194, 255, 0.8); }
}

#artist-name {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

/* Estilos de secciones - Neomorfismo */
section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    position: relative;
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.6), rgba(10, 10, 20, 0.8));
    border-radius: var(--border-radius);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5),
                -20px -20px 60px rgba(30, 30, 50, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

h2 {
    color: var(--light);
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

/* Estilos de la lista de canciones - Diseño moderno */
.tracks-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background: rgba(30, 30, 40, 0.5);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.track-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.track-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(40, 40, 60, 0.7);
    border-color: var(--secondary);
}

.track-item:hover::before {
    left: 100%;
}

.track-number {
    font-size: 1.5rem;
    margin-right: 1.5rem;
    color: var(--secondary);
    font-weight: 600;
    width: 30px;
    text-align: center;
}

.track-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.track-item:hover .track-image {
    transform: scale(1.1) rotate(3deg);
}

.track-info {
    flex-grow: 1;
}

.track-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--light);
}

/* Estilos de la cuadrícula de lanzamientos - Diseño de tarjetas modernas */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2.5rem;
}

.release-item {
    background: rgba(30, 30, 40, 0.5);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.release-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.release-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.release-item:hover .release-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.release-info {
    padding: 1.5rem;
    position: relative;
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(5px);
}

.release-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--light);
}

.release-date {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Estilos responsivos - Adaptación perfecta */
@media (max-width: 768px) {
    .artist-photo {
        width: 150px;
        height: 150px;
    }

    #artist-name {
        font-size: 2.2rem;
    }

    .releases-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1.5rem;
    }
    
    section {
        padding: 2rem 1.5rem;
        margin: 1.5rem auto;
    }
    
    .track-item {
        padding: 1rem;
    }
    
    .track-image {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }
    
    .track-number {
        font-size: 1.2rem;
        margin-right: 1rem;
    }
}

/* Animaciones globales */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

section, .artist-info, .track-item, .release-item, .about-section {
    animation: fadeIn 0.8s ease-out forwards;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--light);
    opacity: 0.9;
    margin-top: 0.5rem;
}

.about-section {
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 1rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1rem 0;
    color: var(--light);
    opacity: 0.9;
}

.artist-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.bio-info, .achievements {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 0.8rem;
}

.bio-info h3, .achievements h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

#achievements-list {
    list-style: none;
    padding: 0;
}

#achievements-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

#achievements-list li:before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent);
}

@media (max-width: 768px) {
    .artist-details {
        grid-template-columns: 1fr;
    }
}

.tracks-list .track-item:nth-child(odd) {
    animation-delay: 0.1s;
}

.tracks-list .track-item:nth-child(even) {
    animation-delay: 0.2s;
}

.releases-grid .release-item:nth-child(3n+1) {
    animation-delay: 0.1s;
}

.releases-grid .release-item:nth-child(3n+2) {
    animation-delay: 0.2s;
}

.releases-grid .release-item:nth-child(3n) {
    animation-delay: 0.3s;
}

.site-footer {
    width: 100%;
    background: var(--gradient-main);
    color: var(--light);
    text-align: center;
    padding: 1.5rem 0 1rem 0;
    position: relative;
    margin-top: 3rem;
    box-shadow: 0 -4px 24px rgba(138,43,226,0.12);
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    z-index: 10;
}

.site-footer .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}