:root {
            --primary-black: #030014; /* Más profundo para el contraste del cristal */
            --neon-purple: #a855f7; --neon-purple-deep: #7c3aed; --neon-orange: #ff6b35; --neon-orange-warm: #f97316;
            --pure-white: #f0f0f0;
            --gray-sub: #8b8b9e;
            
            /* Variables Liquid Glass */
            --liquid-bg: rgba(255, 255, 255, 0.03);
            --liquid-border: rgba(255, 255, 255, 0.08);
            --liquid-glow-purple: rgba(168, 85, 247, 0.25); --liquid-glow-orange: rgba(255, 107, 53, 0.25);
            --glass-blur: blur(20px) saturate(180%);
            
            --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            background-color: var(--primary-black);
            color: var(--pure-white);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- Fondo de Refracción (Liquid Background) --- */
        .liquid-ambient {
            position: fixed;
            top: 0; left: 0; width: 100vw; height: 100vh;
            z-index: -1; pointer-events: none; overflow: hidden;
        }
        .orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
        .orb-1 { width: 600px; height: 600px; top: -10%; right: -5%; background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%); animation: floatOrb1 20s ease-in-out infinite; }
        .orb-2 { width: 500px; height: 500px; bottom: -10%; left: -5%; background: radial-gradient(circle, var(--neon-orange) 0%, transparent 70%); animation: floatOrb2 25s ease-in-out infinite; }
        @keyframes floatOrb1 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(-80px,60px)} 66%{transform:translate(40px,30px)} }
        @keyframes floatOrb2 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(60px,-80px)} 66%{transform:translate(-50px,-30px)} }

        /* --- Animaciones Reveal --- */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: var(--transition);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Navegación Liquid Glass --- */
        .glass-nav {
            position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
            width: 92%; max-width: 1400px; z-index: 1000;
            background: rgba(3, 0, 20, 0.5);
            backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
            border: 1px solid var(--liquid-border); border-radius: 20px;
            padding: 12px 30px; display: flex; justify-content: space-between;
            align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
            transition: var(--transition);
        }
        .nav-logo img { height: 40px; filter: drop-shadow(0 0 5px rgba(255,255,255,0.2)); transition: var(--transition); }
        .nav-logo img:hover { transform: scale(1.05); }
        
        .nav-links { display: flex; gap: 30px; align-items: center; }
        .nav-links a {
            color: rgba(255, 255, 255, 0.7); text-decoration: none;
            font-weight: 500; font-size: 0.8rem; transition: var(--transition);
            text-transform: uppercase; font-family: 'Space Grotesk', monospace; letter-spacing: 1px;
        }
        .nav-links a:hover, .nav-links a.active { 
            color: var(--neon-purple); text-shadow: 0 0 10px var(--liquid-glow-purple);
        }

        /* Botón de Hamburguesa */
        .hamburger-menu {
            display: none; color: var(--neon-purple);
            font-size: 1.5rem; cursor: pointer; transition: var(--transition);
        }

        /* --- Header de la Página --- */
        .page-header {
            padding: 180px 5% 80px;
            text-align: center;
            background: radial-gradient(ellipse at bottom, rgba(168,85,247,0.05) 0%, transparent 60%);
            border-bottom: 1px solid var(--liquid-border);
            position: relative;
        }
        .page-title {
            font-family: 'Space Grotesk', monospace;
            font-size: 4rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 8px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff 20%, var(--neon-purple) 60%, var(--neon-orange) 100%);
            background-size: 200% 200%; animation: gradientShift 6s ease infinite;
            -webkit-background-clip: text; color: transparent;
            filter: drop-shadow(0 10px 30px rgba(168,85,247,0.3));
        }
        @keyframes gradientShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
        .page-subtitle {
            color: var(--gray-sub); font-size: 1.15rem;
            max-width: 650px; margin: 0 auto; line-height: 1.8;
            text-shadow: 0 2px 4px rgba(0,0,0,0.8);
        }

        /* --- Cuadrícula de Artistas --- */
        .artists-container {
            padding: 80px 5%; max-width: 1400px;
            margin: 0 auto; flex: 1; width: 100%;
        }
        
        .artists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 40px; justify-items: center;
        }

        /* --- Tarjetas de Artistas Liquid Glass --- */
        .artist-card-page {
            text-align: center; display: flex; flex-direction: column;
            align-items: center; gap: 20px; transition: var(--transition);
            width: 100%; cursor: pointer;
            
            /* Estilos Liquid Glass */
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
            border-radius: 30px;
            padding: 40px 20px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            position: relative; overflow: hidden;
            border: 1px solid var(--liquid-border);
        }

        /* Borde Neon Animado */
        .artist-card-page::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: conic-gradient(
                transparent, 
                #00d2ff, /* Azul Neon */
                transparent 15%, 
                transparent 45%, 
                var(--neon-orange), 
                transparent 60%
            );
            animation: rotateBorder 3s linear infinite;
            z-index: 0;
            opacity: 0;
            transition: var(--transition);
            filter: blur(2px);
        }

        .artist-card-page::after {
            content: '';
            position: absolute;
            inset: 3px;
            background: #030014;
            border-radius: 28px;
            z-index: 1;
            transition: var(--transition);
        }

        .artist-card-page:hover::before { opacity: 1; }
        .artist-card-page:hover::after { background: rgba(3,0,20,0.92); }

        .artist-card-page:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 30px rgba(0,210,255,0.3);
        }

        @keyframes rotateBorder {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .artist-photo-wrapper, .artist-info, .artist-socials {
            z-index: 2;
            position: relative;
        }

        .artist-photo-wrapper {
            width: 160px; height: 160px; border-radius: 50%;
            border: 2px solid var(--liquid-border);
            overflow: hidden; position: relative; transition: var(--transition);
            background-color: rgba(0,0,0,0.5);
            box-shadow: 0 10px 20px rgba(0,0,0,0.4);
            z-index: 2;
        }

        .artist-photo-wrapper img {
            width: 100%; height: 100%; object-fit: cover;
            filter: grayscale(80%) contrast(1.1);
            transition: var(--transition);
        }

        .artist-info { z-index: 2; }

        .artist-info h3 {
            color: var(--pure-white); font-family: 'Space Grotesk', monospace;
            font-size: 1.3rem; text-transform: uppercase; letter-spacing: 2px;
            transition: var(--transition); margin-bottom: 8px;
        }

        .artist-info span {
            color: var(--neon-purple); font-size: 0.8rem; font-weight: 600;
            letter-spacing: 3px; text-transform: uppercase;
            opacity: 0.6; transform: translateY(0); transition: var(--transition);
            display: block; font-family: 'Space Grotesk', monospace;
        }

        /* Hover Effects Liquid */
        .artist-card-page:hover {
            transform: translateY(-10px);
            border-color: rgba(168, 85, 247, 0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px var(--liquid-glow-purple);
            background: rgba(255,255,255,0.04);
        }

        .artist-card-page:hover .artist-photo-wrapper {
            border-color: var(--neon-purple);
            box-shadow: 0 0 30px rgba(168, 85, 247, 0.4), inset 0 0 20px rgba(0,0,0,0.8);
            transform: scale(1.05);
        }

        .artist-card-page:hover .artist-photo-wrapper img {
            filter: grayscale(0%) contrast(1.05); transform: scale(1.1);
        }

        .artist-card-page:hover .artist-info h3 { color: var(--neon-purple); text-shadow: 0 0 10px rgba(168,85,247,0.3); }
        .artist-card-page:hover .artist-info span { opacity: 1; text-shadow: 0 0 8px rgba(168,85,247,0.4); }

        /* --- Footer --- */
        footer { 
            padding: 60px 5%; text-align: center; border-top: 1px solid var(--liquid-border); 
            color: var(--gray-sub); background: radial-gradient(circle at bottom center, rgba(168, 85, 247, 0.05) 0%, transparent 70%); 
            margin-top: auto; width: 100%; 
        }
        .social { margin-bottom: 30px; display: flex; justify-content: center; gap: 30px; }
        .social a { 
            color: var(--pure-white); text-decoration: none; font-size: 1.6rem; 
            transition: var(--transition); width: 45px; height: 45px; 
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%; background: var(--liquid-bg); border: 1px solid var(--liquid-border);
            backdrop-filter: blur(5px);
        }
        .social a:hover { color: var(--neon-purple); transform: translateY(-5px); border-color: var(--neon-purple); box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 15px var(--liquid-glow-purple); }
        .footer-nav { margin-bottom: 25px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .footer-nav a { color: var(--gray-sub); text-decoration: none; font-size: 0.85rem; transition: var(--transition); text-transform: uppercase; font-family: 'Space Grotesk', monospace; letter-spacing: 1px;}
        .footer-nav a:hover { color: var(--neon-purple); text-shadow: 0 0 8px var(--liquid-glow-purple); }
        footer p { font-size: 0.8rem; opacity: 0.6; }

        /* =========================================================================
           DISEÑO RESPONSIVO (Móviles y Tablets)
           ========================================================================= */
        @media (max-width: 900px) {
            .glass-nav { width: 95%; top: 15px; padding: 15px 25px; border-radius: 15px; }
            .hamburger-menu { display: block; }
            .nav-links {
                position: absolute; top: calc(100% + 10px); left: 0; width: 100%;
                background: rgba(3, 0, 20, 0.85); backdrop-filter: var(--glass-blur);
                -webkit-backdrop-filter: var(--glass-blur); border-radius: 15px;
                flex-direction: column; align-items: center; padding: 30px 0; gap: 25px;
                border: 1px solid var(--liquid-border); box-shadow: 0 20px 40px rgba(0,0,0,0.8);
                transform: translateY(-20px); opacity: 0; visibility: hidden;
            }
            .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
            .nav-links a { font-size: 1rem; width: 100%; text-align: center; padding: 10px 0; }

            .page-title { font-size: 2.8rem; letter-spacing: 4px; }
            header.page-header { padding: 140px 20px 50px; }
            
            /* Ajustes grilla móvil */
            .artists-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 25px; }
            .artist-card-page { padding: 30px 15px 20px; border-radius: 20px; }
            .artist-photo-wrapper { width: 120px; height: 120px; }
            .artist-info h3 { font-size: 1.1rem; }
            .artist-info span { opacity: 0.8; font-size: 0.7rem; letter-spacing: 1px; }
        }

        
        /* --- PRELOADER --- */
        .preloader {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            background: #030014; z-index: 9999;
            display: flex; flex-direction: column;
            justify-content: center; align-items: center;
            transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
        }
        .preloader.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }
        .preloader-logo {
            width: 100px; height: 100px; margin-bottom: 50px;
            animation: preloaderPulse 2.5s ease-in-out infinite;
            filter: drop-shadow(0 0 40px rgba(168,85,247,0.6));
            z-index: 2;
        }
        .preloader-logo img { width: 100%; height: 100%; object-fit: contain; }
        @keyframes preloaderPulse { 0%,100%{transform:scale(1);filter:drop-shadow(0 0 20px rgba(168,85,247,0.4))} 50%{transform:scale(1.1);filter:drop-shadow(0 0 50px rgba(168,85,247,0.8))} }
        
        .preloader-rings { position: relative; width: 160px; height: 160px; display: flex; justify-content: center; align-items: center; }
        .ring {
            position: absolute; border: 2px solid transparent; border-radius: 50%;
        }
        .ring-1 {
            width: 160px; height: 160px; border-top-color: #a855f7;
            animation: spinRing 2s linear infinite;
        }
        .ring-2 {
            width: 140px; height: 140px; border-right-color: #ff6b35;
            animation: spinRing 1.5s linear infinite reverse;
        }
        .ring-3 {
            width: 120px; height: 120px; border-bottom-color: #00d2ff;
            animation: spinRing 3s linear infinite;
        }
        @keyframes spinRing { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
        
        .preloader-bar {
            position: absolute; bottom: 12%; left: 50%; transform: translateX(-50%);
            width: 250px; height: 4px; background: rgba(255,255,255,0.04);
            border-radius: 4px; overflow: hidden;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
        }
        .preloader-bar-fill {
            height: 100%; width: 0%; border-radius: 4px;
            background: linear-gradient(90deg, #a855f7, #00d2ff, #ff6b35);
            background-size: 200% 100%;
            animation: fillBar 3s ease-in-out forwards;
            box-shadow: 0 0 15px rgba(168,85,247,0.5);
        }
        @keyframes fillBar { 0%{width:0%} 100%{width:100%} }
 40%{width:60%} 80%{width:85%} 100%{width:100%} }
        .preloader-text {
            position: absolute; bottom: calc(15% + 20px); left: 50%; transform: translateX(-50%);
            font-family: 'Space Grotesk', monospace; font-size: 0.7rem;
            color: rgba(255,255,255,0.3); letter-spacing: 4px; text-transform: uppercase;
        }
