
        /* ===== 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;
        }

        /* Estilo para el H1 principal (oculto visualmente pero visible para SEO) */
        .seo-h1 {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* ===== 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 ESTÁTICO (original) ===== */
        .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;
                margin: 0.5rem 0 1.5rem;
            }
            
            .nav-item {
                font-size: 0.85rem;
                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.75rem;
                letter-spacing: 0.08em;
                padding: 0.3rem 0.2rem;
                white-space: normal;
                text-align: center;
                min-width: 65px;
            }
        }

        /* ===== 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;
            }
        }

        /* ===== MAIN CONTENT (igual a eventos: misma estructura de márgenes y tarjetas) ===== */
        .main-content {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            margin: 2rem auto;
            max-width: 1000px;
        }

        @media (min-width: 768px) {
            .main-content {
                gap: 3rem;
                margin: 3rem auto;
            }
        }

        /* ===== CARDS estilo consistente con eventos.html ===== */
        .card {
            background: linear-gradient(145deg, #111, #0a0a0a);
            border: 1px solid #ffffff20;
            padding: 0;
            transition: all 0.3s ease;
            width: 100%;
            overflow: hidden;
            box-shadow: 0 30px 50px -20px rgba(255,255,255,0.1);
        }

        .card:hover {
            border-color: #ffffff60;
            box-shadow: 0 40px 60px -20px rgba(255,255,255,0.2);
        }

        .card h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            padding: 1.5rem 1.5rem 0.8rem 1.5rem;
            border-bottom: 1px solid #ffffff20;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            background: #0a0a0a;
        }

        @media (min-width: 768px) {
            .card h2 {
                font-size: 1.8rem;
                padding: 2rem 2rem 1rem 2rem;
            }
        }

        @media (max-width: 480px) {
            .card h2 {
                font-size: 1.3rem;
                padding: 1.2rem 1rem 0.6rem 1rem;
                gap: 0.5rem;
            }
        }

        .card h2 i {
            color: white;
            opacity: 0.6;
            font-size: 1.8rem;
        }

        /* Contenido interno de las cards con padding uniforme */
        .card-inner {
            padding: 1.5rem;
        }

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

        @media (max-width: 480px) {
            .card-inner {
                padding: 1rem;
            }
        }

        /* ===== VIDEO THUMBNAILS (estilo consistente) ===== */
        .video-thumbnail-link {
            display: block;
            text-decoration: none;
            position: relative;
            width: 100%;
            cursor: pointer;
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #000;
            border-radius: 8px;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .video-thumbnail-link:hover .video-thumbnail img {
            transform: scale(1.05);
        }

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

        .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;
        }

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

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

        @media (max-width: 600px) {
            .play-overlay i {
                font-size: 3rem;
            }
        }

        .video-info {
            margin-top: 1rem;
            padding: 0.8rem;
            background: #080808;
            border-radius: 8px;
        }

        .video-info p {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        /* ===== TARJETA DE EVENTO DESTACADO (igual a grid de eventos) ===== */
        .evento-unico {
            width: 100%;
        }

        .evento-card-destacado {
            background: linear-gradient(145deg, #111, #0a0a0a);
            overflow: hidden;
            transition: all 0.4s ease;
            color: white;
            display: block;
            border: 1px solid #ffffff20;
            box-shadow: 0 30px 50px -20px rgba(255,255,255,0.1);
        }

        .evento-card-destacado:hover {
            transform: translateY(-5px);
            border-color: #ffffff60;
            box-shadow: 0 40px 60px -20px rgba(255,255,255,0.2);
        }

        .evento-imagen {
            width: 100%;
            aspect-ratio: 16/9;
            background: #1a1a1a;
            position: relative;
            overflow: hidden;
        }

        .evento-contenido {
            padding: 1.8rem;
        }

        .evento-titulo h3 {
            font-size: 1.6rem;
            margin-bottom: 0.8rem;
        }

        .evento-fecha, .evento-lugar {
            color: #ffffff80;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.6rem;
        }

        .evento-descripcion {
            color: #ffffff90;
            font-size: 0.9rem;
            margin-bottom: 1.2rem;
            line-height: 1.5;
        }

        .evento-artistas {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .evento-artista-tag {
            background: #ffffff10;
            color: #ffffff80;
            font-size: 0.7rem;
            padding: 0.25rem 0.8rem;
            border-radius: 30px;
            border: 1px solid #ffffff20;
        }

        /* ===== SPOTIFY ===== */
        .spotify-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            width: 100%;
            margin: 1rem 0;
        }

        @media (min-width: 768px) {
            .spotify-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        .spotify-item {
            transition: all 0.3s ease;
            overflow: hidden;
            line-height: 0;
            width: 100%;
        }

        .spotify-item iframe {
            display: block;
            width: 100%;
            height: 152px;
            border: none;
            background: #0a0a0a;
            vertical-align: bottom;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }

        .spotify-item:hover iframe {
            box-shadow: 0 8px 20px rgba(29, 185, 84, 0.3);
        }

        /* ===== BOTONES TÁCTILES ===== */
        .btn-tactile {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            padding: 0.9rem 1.8rem;
            border: 2px solid #fff;
            background: transparent;
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.85rem;
            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);
        }

        .btn-tactile:active {
            transform: scale(0.97);
            background: white;
            color: black;
        }

        .btn-group-tactile {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 2rem 0;
            align-items: center;
        }

        @media (min-width: 600px) {
            .btn-group-tactile {
                flex-direction: row;
                justify-content: center;
                gap: 2rem;
            }
        }

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

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

        .divider {
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid #ffffff20;
            text-align: center;
        }

        .more-link {
            color: #fff;
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

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

        .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;
        }
    
        /* ===== 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;
        }
