/* Base y Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            cursor: none !important;
        }

        html,
        body {
            color-scheme: dark;
            height: 100%;
            display: flex;
            flex-direction: column;
            background: radial-gradient(circle at bottom right, #6a0f0f, #000 60%);
            color: #fff;
            overflow: hidden; /* Force hide scrollbars completely */
            scroll-behavior: smooth;
            cursor: none;
        }

        canvas {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none
        }

        /* Header / Nav Escritorio */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, .9);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 50px;
            z-index: 3002;
            box-shadow: 0 2px 8px rgba(255, 255, 255, .05)
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px
        }

        .logo img {
            width: 40px;
            height: 40px;
            border-radius: 50%
        }

        .logo span {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            align-items: center
        }

        nav ul li {
            position: relative
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 5px;
            transition: .3s
        }

        nav ul li a:hover {
            color: #ff3c3c
        }

        nav ul li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background: #ff3c3c;
            transition: width .3s
        }

        nav ul li a:hover::after {
            width: 100%
        }

        /* Submenú */
        .submenu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(0, 0, 0, .95);
            padding: 10px 0;
            border-radius: 8px;
            min-width: 200px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
            z-index: 25;
        }

        nav ul li:hover .submenu {
            display: block;
        }

        .submenu li {
            padding: 5px 20px;
        }

        .submenu li a {
            display: block;
            color: #fff;
            padding: 8px 10px;
            transition: .3s;
            position: relative;
            white-space: nowrap;
        }

        .submenu li a:hover {
            background: rgba(65, 11, 11, 0.8);
            color: #fff;
            border-radius: 5px;
            transform: translateX(3px);
        }

        /* ESTILO PARA PÁGINA ACTIVA (CORREGIDO Y UNIFICADO) */
        /* --- Estilo activo como Marketing --- */

        /* Padre activo (Cartelera) */
        nav ul li.parent-active>a {
            color: #d4af37 !important;
            font-weight: 700;
        }

        nav ul li.parent-active>a::after {
            content: "";
            width: 100%;
            background: #ff3c3c;
            height: 2px;
            position: absolute;
            left: 0;
            bottom: -5px;
        }

        /* Hijo activo (En Estreno) */
        /* Hijo activo (En Estreno) */
        .submenu li a.active-page {
            background: #5c0c0c;
            color: #fff !important;
            border-radius: 10px;
            border-left: 5px solid #d4af37;
            border-bottom: none;
            margin: 5px 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        


        /* Nav Móvil */
        

        

        

        

        

        


        

        

        /* Contenido principal de la página */
        .main-content {
            flex-grow: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: calc(100vh - 100px);
            padding: 80px 20px;
        }

        .proximamente-container {
            text-align: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
            border: 1px solid rgba(212, 175, 55, 0.4);
            animation: pulse-border 2s infinite alternate ease-in-out;
        }

        .proximamente-title {
            font-size: 5rem;
            font-weight: 900;
            color: #ffecb3;
            letter-spacing: 5px;
            text-transform: uppercase;
            text-shadow:
                0 0 10px #d4af37,
                0 0 20px rgba(255, 236, 179, 0.8),
                0 0 30px rgba(255, 236, 179, 0.6);
            animation: text-glow-strong 2.5s infinite alternate ease-in-out;
            margin-bottom: 20px;
        }

        .proximamente-subtitle {
            font-size: 1.5rem;
            color: #d4af37;
            margin-top: 15px;
            font-style: italic;
        }

        /* Animación de Resplandor fuerte para el texto */
        @keyframes text-glow-strong {
            from {
                text-shadow:
                    0 0 10px #d4af37,
                    0 0 20px rgba(255, 236, 179, 0.8),
                    0 0 30px rgba(255, 236, 179, 0.6);
            }

            to {
                text-shadow:
                    0 0 15px #d4af37,
                    0 0 25px rgba(255, 236, 179, 1),
                    0 0 40px rgba(255, 236, 179, 0.8);
            }
        }

        /* Animación de pulso para el borde del contenedor */
        @keyframes pulse-border {
            from {
                border-color: rgba(212, 175, 55, 0.4);
                box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
            }

            to {
                border-color: rgba(212, 175, 55, 0.8);
                box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
            }
        }

        /* Text Glow Animation Restante */
        .social-links {
            position: fixed;
            bottom: 30px;
            left: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 100
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, .15);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 22px;
            transition: all .3s ease;
            backdrop-filter: blur(5px)
        }

        .social-links a:hover {
            background: linear-gradient(135deg, #d4af37, #ffecb3);
            color: #000;
            transform: scale(1.1);
            box-shadow: 0 0 15px #d4af37, 0 0 30px #ffecb3
        }

        footer {
            text-align: center;
            padding: 25px 10px;
            color: #d4af37;
            font-size: .95rem;
            width: 100%;
            margin-top: auto;
        }

        /* Media Queries (Responsividad) */
        @media (max-width:900px) {
            nav {
                display: none
            }

            

            header {
                padding: 15px 20px;
                z-index: 3002;
            }

            .main-content {
                padding: 100px 20px 60px;
            }

            .proximamente-title {
                font-size: 3rem;
                letter-spacing: 3px;
            }

            .proximamente-subtitle {
                font-size: 1.2rem;
            }

            .proximamente-container {
                padding: 25px;
            }
        }

        @media (max-width:500px) {
            .proximamente-title {
                font-size: 2.2rem;
                letter-spacing: 2px;
            }
        }

        /* EFECTO DE SELECCIÓN MÁGICA */
        ::selection {
            background: rgba(106, 15, 15, 0.8);
            color: #ffffff;
            text-shadow: 0 0 5px #d4af37, 0 0 10px #d4af37, 0 0 20px #ffecb3;
        }

        ::-moz-selection {
            background: rgba(106, 15, 15, 0.8);
            color: #ffffff;
            text-shadow: 0 0 5px #d4af37, 0 0 10px #d4af37;
        }

        /* Estilo de la partícula mágica */
        .magic-star {
            position: fixed;
            pointer-events: none;
            background: #d4af37;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            box-shadow: 0 0 10px #ffecb3;
            animation: fadeOut 1s linear forwards;
            z-index: 9999;
        }

        @keyframes fadeOut {
            0% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }

            100% {
                opacity: 0;
                transform: scale(0) translateY(20px);
            }
        }
    
        /* Custom Animated Cursor */
        .custom-cursor {
            position: fixed;
            top: 0;
            left: 0;
            width: 20px;
            height: 20px;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.1s linear;
        }
        .custom-cursor svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.8));
        }

        /* Estilo de la partícula mágica */
        .magic-star {
            position: fixed;
            pointer-events: none;
            background: #d4af37;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            box-shadow: 0 0 10px #ffecb3;
            animation: fadeOutMagic 1s linear forwards;
            z-index: 9999;
        }

        @keyframes fadeOutMagic {
            0% { opacity: 1; transform: scale(1) translateY(0); }
            100% { opacity: 0; transform: scale(0) translateY(20px); }
        }

        /* Ocultar el cursor personalizado VIRTUAL enteramente en móviles */
        @media (pointer: coarse) {
            .custom-cursor {
                display: none !important;
            }
        }
    

    

    


    

    

    
