* {
            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;
            min-height: 100vh;
        }

        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: 600;
        }

        /* ===== 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 ===== */
        .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, .nav-item.active {
            color: white;
        }

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

        @media (max-width: 768px) {
            .nav-menu {
                gap: 1rem;
                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;
            }
            .nav-item {
                font-size: 0.75rem;
                letter-spacing: 0.08em;
                white-space: normal;
                text-align: center;
                min-width: 65px;
                padding: 0.3rem 0.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;
            }
        }

        /* ===== SECCIÓN PRÓXIMO EVENTO (estilo consistente, ahora con mensaje de entradas muy pronto) ===== */
        .post-event {
            max-width: 800px;
            margin: 2rem auto;
            text-align: center;
            padding: 2rem;
            background: linear-gradient(145deg, #111, #0a0a0a);
            border: 1px solid #ffffff20;
            box-shadow: 0 30px 50px -20px rgba(255,255,255,0.1);
            transition: all 0.4s ease;
        }

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

        @media (min-width: 768px) {
            .post-event {
                padding: 2.5rem;
                margin: 3rem auto;
            }
        }

        @media (max-width: 600px) {
            .post-event {
                padding: 1.5rem;
                margin: 1.5rem auto;
            }
        }

        .event-flyer-mini {
            max-width: 260px;
            margin: 0 auto 2rem;
            opacity: 0.85;
        }

        .event-flyer-mini img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 4px;
        }

        .event-status {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
            margin-bottom: 1.5rem;
            background: rgba(255,255,255,0.03);
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            backdrop-filter: blur(2px);
        }

        .event-title {
            font-size: 1.8rem;
            font-weight: 700;
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -0.02em;
            color: white;
            margin-bottom: 1rem;
        }

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

        .thankyou-text {
            font-size: 1rem;
            font-weight: 400;
            color: rgba(255,255,255,0.75);
            max-width: 500px;
            margin: 0 auto 0.75rem;
            line-height: 1.5;
        }

        .coming-soon-highlight {
            background: rgba(255,255,255,0.05);
            border-left: 3px solid white;
            padding: 1rem 1.2rem;
            margin: 1.8rem auto;
            max-width: 450px;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            color: #f0f0f0;
        }

        @media (max-width: 768px) {
            .thankyou-text {
                font-size: 0.9rem;
            }
            .coming-soon-highlight {
                font-size: 0.85rem;
                padding: 0.8rem 1rem;
                margin: 1.5rem auto;
            }
        }

        /* ===== TAGS DE GÉNEROS ===== */
        .genre-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.6rem;
            margin: 1.5rem 0 1.8rem;
        }

        .genre-tag {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            color: #dddddd;
            text-transform: uppercase;
        }

        /* ===== LISTA DE DJS ===== */
        .djs-list {
            margin: 1.5rem 0 1.8rem;
        }

        .djs-label {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: rgba(255,255,255,0.5);
            margin-bottom: 0.8rem;
        }

        .dj-names {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.2rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255,255,255,0.85);
        }

        .dj-names span {
            letter-spacing: 0.02em;
        }

        @media (max-width: 768px) {
            .dj-names {
                gap: 0.8rem;
                font-size: 0.8rem;
            }
            .genre-tag {
                font-size: 0.6rem;
                padding: 0.2rem 0.8rem;
            }
        }

        .next-info {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin: 1.8rem 0 2rem;
        }

        .insta-link {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 0.85rem 2rem;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: all 0.25s ease;
        }

        .insta-link i {
            font-size: 1.2rem;
        }

        .insta-link:hover {
            border-color: white;
            background: rgba(255,255,255,0.05);
            transform: translateY(-2px);
        }

        .insta-link:active {
            transform: scale(0.97);
        }

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