/* ===== 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 3rem;
            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: 1.2rem;
                padding: 0.3rem 0;
                margin: 0.5rem 0 2rem;
            }
            
            .nav-item {
                font-size: 0.85rem;
                letter-spacing: 0.15em;
                padding: 0.4rem 0;
            }
        }

        @media (max-width: 480px) {
            .nav-menu {
                gap: 0.8rem;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-item {
                font-size: 0.75rem;
                letter-spacing: 0.1em;
                padding: 0.3rem 0.3rem;
                white-space: normal;
                text-align: center;
                min-width: 70px;
            }
        }

        /* ===== NOTICIAS / BLOG ===== */
        .noticias-grid {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            margin: 2rem 0 4rem;
        }

        .noticia-card {
            background: #0a0a0a;
            border: 1px solid #ffffff20;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .noticia-card:hover {
            border-color: #ffffff60;
        }

        .noticia-imagen {
            width: 100%;
            max-width: 100%;
            margin: 0;
            aspect-ratio: 21/9;
            overflow: hidden;
            background: #1a1a1a;
        }

        .noticia-imagen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .noticia-card:hover .noticia-imagen img {
            transform: scale(1.03);
        }

        .noticia-header {
            padding: 1.5rem 1.5rem 0 1.5rem;
        }

        .noticia-categoria {
            display: inline-block;
            background: #ffffff20;
            color: #ffffff90;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            margin-bottom: 1rem;
        }

        .noticia-titulo {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        @media (max-width: 768px) {
            .noticia-titulo {
                font-size: 1.5rem;
            }
        }

        .noticia-meta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            color: #ffffff60;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #ffffff20;
        }

        .noticia-meta i {
            margin-right: 0.3rem;
            color: #ffffff80;
        }

        .noticia-contenido {
            padding: 0 1.5rem 1rem 1.5rem;
        }

        .noticia-contenido p {
            color: #ffffffc0;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        /* ===== TARJETA DE EVENTO MINI ===== */
        .evento-mini {
            background: linear-gradient(145deg, #111, #0a0a0a);
            border: 1px solid #ffffff30;
            margin: 2rem 0 1.5rem;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .evento-mini:hover {
            border-color: white;
            transform: translateY(-5px);
            box-shadow: 0 20px 40px -15px rgba(255,255,255,0.2);
        }

        .evento-mini-inner {
            display: flex;
            flex-wrap: wrap;
        }

        .evento-mini-imagen {
            flex: 0 0 280px;
            position: relative;
            overflow: hidden;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .evento-mini-imagen {
                flex: 0 0 100%;
                aspect-ratio: 16/9;
            }
        }

        .evento-mini-imagen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .evento-mini:hover .evento-mini-imagen img {
            transform: scale(1.05);
        }

        .play-overlay-mini {
            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;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .evento-mini:hover .play-overlay-mini {
            opacity: 1;
        }

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

        .evento-mini-contenido {
            flex: 1;
            padding: 1.5rem;
        }

        .evento-mini-titulo {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        @media (max-width: 600px) {
            .evento-mini-titulo {
                font-size: 1.2rem;
            }
        }

        .evento-mini-fecha {
            color: #ffffff80;
            font-size: 0.85rem;
        }

        .evento-mini-lugar {
            color: #ffffff60;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
        }

        .evento-mini-desc {
            color: #ffffff90;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

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

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

        .evento-mini-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            text-decoration: none;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: gap 0.3s ease;
        }

        .evento-mini-link:hover {
            gap: 0.8rem;
        }

        .noticia-footer {
            padding: 1rem 1.5rem 1.5rem 1.5rem;
            border-top: 1px solid #ffffff20;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        /* ===== BOTONES DE COMPARTIR ===== */
        .share-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .share-label {
            color: #ffffff60;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .share-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #1a1a1a;
            color: #ffffff80;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 1.2rem;
            cursor: pointer;
        }

        .share-icon:hover {
            transform: translateY(-2px);
        }

        .share-icon.instagram:hover {
            background: linear-gradient(45deg, #fccc63, #bc2a8d);
            color: white;
        }

        .share-icon.whatsapp:hover {
            background: #25D366;
            color: white;
        }

        .share-icon.twitter:hover {
            background: #1DA1F2;
            color: white;
        }

        .share-icon.facebook:hover {
            background: #1877F2;
            color: white;
        }

        /* ===== 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;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }

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

        .nav-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 3rem 0 2rem;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .nav-links {
                margin: 2rem 0 1rem;
            }
        }

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