/* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #000000;
            font-family: 'Inter', sans-serif;
            color: #ffffff;
            line-height: 1.6;
            font-size: 16px;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 0%, transparent 30%),
                        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03) 0%, transparent 30%);
            pointer-events: none;
            z-index: -1;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem;
        }

        @media (min-width: 768px) {
            .container {
                padding: 2rem;
            }
        }

        h1, h2, h3, h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
        }

        /* ===== HEADER ===== */
        .hero {
            text-align: center;
            margin-bottom: 2rem;
            padding: 2rem 0;
            border-bottom: 1px solid #ffffff20;
        }

        @media (min-width: 768px) {
            .hero {
                margin-bottom: 4rem;
                padding: 3rem 0;
            }
        }

        .logo-image {
            max-width: 80%;
            height: auto;
            margin: 0 auto 1rem;
            display: block;
        }

        @media (min-width: 768px) {
            .logo-image {
                max-width: 60%;
            }
        }

        @media (min-width: 992px) {
            .logo-image {
                max-width: 50%;
            }
        }

        /* ===== MENÚ DE NAVEGACIÓN ===== */
        .nav-menu {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 1rem 0 2rem;
            flex-wrap: wrap;
            padding: 0.5rem 0;
        }

        .nav-item {
            color: #ffffff80;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            padding: 0.5rem 0;
            position: relative;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s ease;
        }

        .nav-item:hover {
            color: white;
        }

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

        .nav-item.active {
            color: white;
        }

        .nav-item.active::after {
            width: 100%;
        }

        @media (max-width: 768px) {
            .nav-menu {
                gap: 1rem;
                padding: 0.3rem 0;
            }
            
            .nav-item {
                font-size: 0.8rem;
                letter-spacing: 0.12em;
                padding: 0.4rem 0;
            }
        }

        @media (max-width: 600px) {
            .nav-menu {
                gap: 0.7rem;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-item {
                font-size: 0.7rem;
                letter-spacing: 0.08em;
                padding: 0.3rem 0.2rem;
                white-space: normal;
                text-align: center;
                min-width: 65px;
            }
        }

        /* ===== BOTÓN RETROCESO ===== */
        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            border: 1px solid #ffffff30;
            color: white;
            padding: 0.7rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            cursor: pointer;
            border-radius: 4px;
        }

        .back-button:hover {
            background: #ffffff10;
            border-color: #ffffff60;
            gap: 0.8rem;
        }

        /* ===== TARJETA DE ARTISTA ===== */
        .artist-card {
            background: #0a0a0a;
            border: 1px solid #ffffff20;
            overflow: hidden;
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .artist-card {
                display: flex;
                flex-direction: row;
            }
        }

        .artist-image {
            flex: 1;
            min-height: 350px;
            background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .artist-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .artist-info {
            flex: 1.5;
            padding: 2rem;
        }

        @media (max-width: 768px) {
            .artist-info {
                padding: 1.5rem;
            }
        }

        .artist-name {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        @media (max-width: 768px) {
            .artist-name {
                font-size: 1.8rem;
            }
        }

        .artist-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #ffffff10;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            margin-bottom: 1.5rem;
            border: 1px solid #ffffff20;
        }

        .artist-tag i {
            font-size: 0.9rem;
        }

        .artist-genre {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-bottom: 1.5rem;
        }

        .genre-badge {
            background: #ffffff10;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #ffffff90;
        }

        /* DESCRIPCIÓN RESPONSIVE */
        .artist-description {
            color: #cccccc;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .description-full {
            display: block;
        }

        .description-short {
            display: none;
        }

        .read-more-btn {
            display: none;
            background: transparent;
            border: none;
            color: #1DB954;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 0.5rem;
            padding: 0.3rem 0;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .read-more-btn:hover {
            color: white;
        }

        .read-more-btn i {
            font-size: 0.7rem;
            margin-left: 0.3rem;
            transition: transform 0.2s ease;
        }

        .read-more-btn:hover i {
            transform: translateX(3px);
        }

        @media (max-width: 768px) {
            .description-full {
                display: none;
            }
            
            .description-short {
                display: block;
            }
            
            .read-more-btn {
                display: inline-flex;
                align-items: center;
                gap: 0.3rem;
            }
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #ffffff10;
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            text-decoration: none;
            color: white;
            font-size: 0.85rem;
            transition: all 0.2s ease;
            border: 1px solid #ffffff20;
        }

        .social-link:hover {
            background: #ffffff20;
            transform: translateY(-2px);
        }

        .social-link i {
            font-size: 1.1rem;
        }

        /* ===== SECCIÓN DE MÚSICA ===== */
        .music-section {
            background: #0a0a0a;
            border: 1px solid #ffffff20;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .music-section {
                padding: 1rem;
            }
        }

        .music-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            border-bottom: 1px solid #ffffff20;
            padding-bottom: 0.8rem;
        }

        @media (max-width: 768px) {
            .music-section h3 {
                font-size: 1.2rem;
            }
        }

        /* ===== YOUTUBE VIDEOS - MINIATURA CON LINK ===== */
        .youtube-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .youtube-video-container {
            width: 100%;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease;
            text-decoration: none;
            display: block;
        }

        .youtube-video-container:hover {
            transform: scale(1.02);
        }

        .youtube-thumbnail-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            cursor: pointer;
        }

        .youtube-thumbnail-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .youtube-video-container:hover .youtube-thumbnail-wrapper img {
            transform: scale(1.05);
        }

        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .youtube-video-container:hover .play-overlay {
            background: rgba(0,0,0,0.2);
        }

        .play-overlay i {
            font-size: 4rem;
            color: #ff0000;
            filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
            transition: transform 0.3s ease;
        }

        .youtube-video-container:hover .play-overlay i {
            transform: scale(1.1);
        }

        .video-title {
            padding: 1rem;
            background: #0a0a0a;
            font-weight: 600;
            font-size: 1rem;
            color: #ffffff;
            border-top: 1px solid #ffffff20;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .video-title i {
            color: #ff0000;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .youtube-grid {
                gap: 1.5rem;
            }
            
            .video-title {
                font-size: 0.85rem;
                padding: 0.8rem;
            }
            
            .play-overlay i {
                font-size: 3rem;
            }
        }

        /* ===== SPOTIFY PROFILE ===== */
        .spotify-profile {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            background: #000;
        }

        .spotify-profile iframe {
            display: block;
            width: 100%;
            min-height: 352px;
            height: auto;
            border: none;
            border-radius: 12px;
        }

        @media (max-width: 768px) {
            .spotify-profile iframe {
                min-height: 380px;
                height: 380px;
            }
        }

        @media (max-width: 480px) {
            .spotify-profile iframe {
                min-height: 420px;
                height: 420px;
            }
        }

        /* ===== BOTONES TÁCTILES ===== */
        .btn-tactile {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            padding: 1rem 2rem;
            border: 2px solid #fff;
            background: transparent;
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
            white-space: nowrap;
        }

        .btn-tactile:active {
            transform: scale(0.97);
            background: white;
            color: black;
            box-shadow: 0 2px 4px rgba(255,255,255,0.2);
        }

        @media (max-width: 600px) {
            .btn-tactile {
                width: 100%;
                max-width: 280px;
                padding: 0.9rem 1.2rem;
                font-size: 0.8rem;
                letter-spacing: 0.15em;
                white-space: normal;
                text-align: center;
            }
        }

        .text-center {
            text-align: center;
        }

        .mt-3 {
            margin-top: 2rem;
        }

        /* ===== FOOTER ===== */
        footer {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem 0 1rem;
            border-top: 1px solid #ffffff20;
            color: #ffffff40;
            font-size: 0.8rem;
        }

        @media (min-width: 768px) {
            footer {
                margin-top: 5rem;
            }
        }

        footer i {
            color: #ffffff60;
            margin: 0 0.5rem;
        }

        .footer-tagline {
            font-size: 0.7rem;
            color: #ffffff40;
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .footer-tagline i {
            color: #ffffff60;
            font-size: 0.6rem;
        }
    
        /* ===== MARGENES DE TARJETAS (igual a eventos.html) ===== */
        .eventos-grid,
        .noticias-grid,
        .artists-grid,
        .youtube-grid,
        .spotify-grid,
        .cards-grid {
            margin: 2rem auto;
            gap: 3rem;
            max-width: 1000px;
        }

        @media (min-width: 768px) {
            .eventos-grid,
            .noticias-grid,
            .artists-grid,
            .youtube-grid,
            .spotify-grid,
            .cards-grid {
                gap: 2rem;
            }
        }

        .card,
        .evento-card,
        .noticia-card,
        .artist-card,
        .redes-card,
        .youtube-card {
            margin-bottom: 2rem;
        }

        /* ===== BURGER MENU FLOATING (aparece al hacer scroll) ===== */
        .burger-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: scale(0.8);
            transition: opacity 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1), visibility 0.3s, transform 0.2s ease;
        }
        .burger-float.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }
        .burger-button {
            width: 56px;
            height: 56px;
            background: #0a0a0a;
            border: 2px solid rgba(255,255,255,0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0,0,0,0.5), 0 0 0 2px rgba(255,255,255,0.1);
            transition: all 0.2s ease;
            backdrop-filter: blur(8px);
            background-color: rgba(0,0,0,0.85);
        }
        .burger-button i {
            font-size: 1.8rem;
            color: white;
            transition: transform 0.2s;
        }
        .burger-button:active {
            transform: scale(0.94);
            background: white;
        }
        .burger-button:active i {
            color: black;
        }
        .burger-menu-panel {
            position: fixed;
            bottom: 90px;
            right: 24px;
            background: rgba(0,0,0,0.95);
            backdrop-filter: blur(16px);
            border-radius: 24px;
            padding: 1rem 0.8rem;
            min-width: 200px;
            border: 1px solid rgba(255,255,255,0.3);
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.8);
            transform: scale(0.9);
            opacity: 0;
            visibility: hidden;
            transition: all 0.25s ease;
            transform-origin: bottom right;
            z-index: 999;
        }
        .burger-menu-panel.open {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }
        .burger-menu-panel a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: #ffffffdd;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 0.08em;
            font-size: 0.9rem;
            border-radius: 40px;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .burger-menu-panel a i {
            width: 24px;
            font-size: 1.1rem;
        }
        .burger-menu-panel a:hover {
            background: rgba(255,255,255,0.15);
            color: white;
            transform: translateX(4px);
        }
        .burger-menu-panel a:active {
            transform: scale(0.97);
        }
        @media (max-width: 480px) {
            .burger-float {
                top: 18px;
                right: 18px;
                bottom: auto;
            }
            .burger-button {
                width: 50px;
                height: 50px;
            }
            .burger-button i {
                font-size: 1.5rem;
            }
            .burger-menu-panel {
                min-width: 180px;
                top: 82px;
                right: 18px;
                bottom: auto;
                transform-origin: top right;
            }
            .burger-menu-panel a {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
        }