
        /* Variables y reset */
        :root {
            --primary-color: #0d1424;
            --secondary-color: #1a233a;
            --accent-color: #4a36b6;
            --highlight-color: #7e6af2;
            --text-color: #e2e8f0;
            --text-light: #7f8c8d;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes glow {
            0% { box-shadow: 0 0 5px var(--highlight-color); }
            50% { box-shadow: 0 0 20px var(--highlight-color); }
            100% { box-shadow: 0 0 5px var(--highlight-color); }
        }

        /* Header y navegación */
        header {
            background-color: rgba(13, 20, 36, 0.95);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            backdrop-filter: blur(10px);
            transition: var(--transition);
            border-bottom: 1px solid rgba(126, 106, 242, 0.2);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .hero-logo {
            max-width: 260px;   /* tamaño máximo en pantallas grandes */
            width: 15vw;        /* responsivo: 60% del ancho de la ventana */
            height: auto;
            margin-top: -10px;  /* súbelo */
            margin-left: -60px; /* muévelo a la izquierda */
        }
        /*.hero-logo {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }*/
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--highlight-color);
            text-decoration: none;
            animation: pulse 4s infinite;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            font-size: 1.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: var(--highlight-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--highlight-color);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            text-align: center;
            position: relative;
            overflow: hidden;
            /*background: linear-gradient(rgba(15, 15, 30, 0.1), rgba(15, 25, 40, 0.1)), 
            url('../img/Foret_Nuits_Incandescentes-hero.jpg') no-repeat center center/cover;*/
            
            background: url('../img/Foret_Nuits_Incandescentes-hero.jpg') no-repeat center center/cover;
        }
/*
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 10%, var(--primary-color) 90%);
        }
*/
        .hero-content {
            animation: fadeIn 1.5s ease-out;
            z-index: 2;
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            padding: 0 4rem -2rem 0;
        }
        
        .hero-content .btn {
            position: relative;
            margin-bottom: 0;
            margin-right: 0;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1rem;
            margin-left: -60px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            background: linear-gradient(to right, #7e6af2, #a396f4);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: #cbd5e0;
        }
        .hero-content img {
            max-width: 100%; /* La imagen nunca será más ancha que su contenedor */
            height: auto; /* Mantiene la proporción */
            width: auto; /* Se ajusta al contenido */
            display: block;
            margin: 0 auto;
            
            /* Tamaños específicos para diferentes dispositivos */
            max-height: 200px; /* Para móviles */
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
            color: white;
            padding: 0.9rem 2.2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(126, 106, 242, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(126, 106, 242, 0.5);
        }

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

        .btn:hover::after {
            left: 100%;
        }

        /* Secciones generales */
        section {
            padding: 6rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            display: inline-block;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--accent-color), var(--highlight-color));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* Sobre el artista */
        .about {
            background-color: var(--secondary-color);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .about-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            animation: float 6s ease-in-out infinite;
            position: relative;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(126, 106, 242, 0.2), transparent);
            z-index: 1;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--highlight-color);
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Música */
        .music {
            background-color: var(--primary-color);
            position: relative;
            overflow: hidden;
        }

        .music::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
            opacity: 0.1;
            border-radius: 50%;
        }

        .music-player {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(145deg, #1a233a, #151c2e);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(126, 106, 242, 0.2);
        }

        .player-header {
            background: rgba(13, 20, 36, 0.7);
            padding: 1.5rem;
            border-bottom: 1px solid rgba(126, 106, 242, 0.2);
        }

        .album-selector {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .album-option {
            flex: 1;
            min-width: 150px;
            text-align: center;
            padding: 1rem;
            background: rgba(126, 106, 242, 0.1);
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid rgba(126, 106, 242, 0.2);
        }

        .album-option:hover, .album-option.active {
            background: rgba(126, 106, 242, 0.2);
            transform: translateY(-3px);
            border-color: var(--highlight-color);
        }

        .album-option img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            margin-bottom: 0.5rem;
            object-fit: cover;
        }

        .album-option h4 {
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }

        .album-option p {
            font-size: 0.8rem;
            color: #a0aec0;
        }

        .track-selector {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.5rem;
        }

        .track-option {
            display: flex;
            align-items: center;
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .track-option:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(5px);
        }

        .track-option.active {
            background: rgba(126, 106, 242, 0.15);
            border-color: var(--highlight-color);
        }

        .track-number {
            width: 25px;
            text-align: center;
            margin-right: 1rem;
            color: #a0aec0;
            font-weight: 600;
        }

        .track-info {
            flex: 1;
        }

        .track-title {
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .track-duration {
            font-size: 0.8rem;
            color: #a0aec0;
        }

        .player-body {
            padding: 2rem;
        }

        .now-playing {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .now-playing-image {
            width: 120px;
            height: 120px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .now-playing-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .now-playing-info {
            flex: 1;
        }

        .now-playing-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--highlight-color);
        }

        .now-playing-info p {
            color: #a0aec0;
            margin-bottom: 1rem;
        }

        .player-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .control-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(126, 106, 242, 0.2);
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .control-btn:hover {
            background: rgba(126, 106, 242, 0.3);
            transform: scale(1.1);
        }

        .play-btn {
            width: 60px;
            height: 60px;
            background: var(--highlight-color);
            font-size: 1.5rem;
        }

        .play-btn:hover {
            background: #6d5bd8;
        }

        .progress-container {
            margin-bottom: 1.5rem;
        }

        .progress-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 0.5rem;
        }

        .progress {
            height: 100%;
            background: var(--highlight-color);
            width: 30%;
            transition: width 0.1s;
        }

        .time-info {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: #a0aec0;
        }

        .lyrics-section {
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
        }

        .lyrics-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            margin-bottom: 1rem;
        }

        .lyrics-toggle h4 {
            color: var(--highlight-color);
        }

        .lyrics-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: rgba(13, 20, 36, 0.5);
            border-radius: 8px;
            padding: 0 1rem;
        }

        .lyrics-content.active {
            max-height: 300px;
            padding: 1rem;
        }

        .lyrics {
            white-space: pre-line;
            line-height: 1.8;
            color: #cbd5e0;
        }

        /* Contacto */
        .contact {
            background-color: var(--secondary-color);
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--highlight-color) 0%, transparent 70%);
            opacity: 0.05;
            border-radius: 50%;
        }

        .contact-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-info h3 {
            margin-bottom: 1.5rem;
            color: var(--highlight-color);
            font-size: 1.8rem;
        }

        .contact-details {
            margin-bottom: 2.5rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .contact-detail i {
            margin-right: 1rem;
            color: var(--highlight-color);
            font-size: 1.2rem;
            width: 30px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-link:hover {
            transform: translateY(-5px) rotate(10deg);
            box-shadow: 0 10px 20px rgba(126, 106, 242, 0.4);
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #25D366;
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            margin-top: 1rem;
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
            background: #20bd5a;
        }

        /* Footer */
        footer {
            background-color: var(--primary-color);
            padding: 3rem 0 2rem;
            text-align: center;
            border-top: 1px solid rgba(126, 106, 242, 0.2);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--highlight-color);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links {
            display: flex;
            list-style: none;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-links li {
            margin: 0 1.2rem;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }

        .footer-links a:hover {
            color: var(--highlight-color);
        }

        .copyright {
            color: #a0aec0;
            font-size: 0.95rem;
            margin-top: 1.5rem;
        }

        /* Efectos de scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .highlight {
            color: #e74c3c;
            font-weight: bold;
        }
        .copyright {
            font-size: 0.85rem;
            color: #7f8c8d;
            text-align: center;
            padding: 2rem 1rem;
            border-top: 1px solid #ecf0f1;
            margin-top: 3rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .copyright a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .copyright a:hover {
            color: #e74c3c;
            transform: translateY(-1px);
        }


        /* Videos Section */
        .videos-section {
            padding: 4rem 0;
        }
        /*
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            margin: 10px auto;
        }
        */
        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .video-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }
        
        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        
        .video-thumbnail {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .video-card:hover .video-thumbnail img {
            transform: scale(1.05);
        }

        .youtube-link {
            display: inline-block;
            margin-top: 10px;
            color: var(--accent-color);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
        }        
        .youtube-link:hover {
            text-decoration: underline;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(231, 76, 60, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .video-card:hover .play-button {
            opacity: 1;
        }
        
        .video-info {
            padding: 1.5rem;
        }
        
        .video-info h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .video-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* Video Modal */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            position: relative;
            width: 90%;
            max-width: 900px;
        }
        
        .close-modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: none;
            border: none;
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }






        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .about-content {
                flex-direction: column;
                gap: 3rem;
            }
            
            .hero-content {
                padding: 0 1.5rem -2rem 0;
            }
            
            .hero-content .btn {
                font-size: 0.95rem;
                padding: 0.8rem 0rem;
                margin-bottom: 0;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                flex-direction: column;
                padding: 1.5rem 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
                border-top: 1px solid rgba(126, 106, 242, 0.2);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 0.8rem 0;
                text-align: center;
            }

            .hamburger {
                display: flex;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.2rem;
            }
            
            .hero-content {
                padding: 0 1.5rem -2rem 1.5rem;
                align-items: flex-end;
                justify-content: center;
            }
            
            .hero-content .btn {
                font-size: 0.9rem;
                padding: 0.75rem -2rem;
                width: auto;
                margin-bottom: 0;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .now-playing {
                flex-direction: column;
                text-align: center;
            }

            .album-selector {
                justify-content: center;
            }

            .album-option {
                min-width: 120px;
            }
            .videos-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-content {
                padding: 0 1rem -2rem 1rem;
                align-items: flex-end;
                justify-content: center;
            }
            
            .hero-content .btn {
                font-size: 0.85rem;
                padding: 0.7rem 1.3rem;
                width: auto;
                max-width: 90%;
                margin-bottom: 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .player-body {
                padding: 1.5rem;
            }
        }
  