:root {
            /* Paleta Minnie Baby */
            --bg-pink: #fff0f5; /* Lavender Blush */
            --soft-white: #ffffff;
            --minnie-pink: #f472b6; /* Pink 400 */
            --deep-pink: #be185d; /* Pink 700 */
            --gold-accent: #d4af37;
            --text-dark: #831843; /* Pink 900 */
            --bubble-color: #fbcfe8; /* Pink 200 */
        }

        body {
            background-color: var(--bg-pink);
            font-family: 'Quicksand', sans-serif;
            overflow-x: hidden;
            color: var(--text-dark);
            margin: 0;
            padding: 0;
            cursor: default;
        }

        h1, h3, .title-font {
            font-family: 'Great Vibes', cursive;
        }
        
        h2 {
            font-family: 'Quicksand', sans-serif;
        }

        /* --- NUEVA ANIMACIÓN GHOST DOT COMPLEX --- */
        @keyframes ghost-swipe-complex {
            0% { transform: translate(0, 0); opacity: 0; }
            10% { opacity: 1; }
            30% { transform: translate(-40px, 0); } /* Izquierda */
            50% { transform: translate(0, 0); }     /* Centro */
            70% { transform: translate(0, -40px); } /* Arriba */
            100% { transform: translate(0, 0); opacity: 0; }
        }

        .run-swipe-anim {
            animation: ghost-swipe-complex 3s ease-in-out infinite;
        }

        /* --- ESTILOS PARA LIGHTBOX Y ROTACIÓN INTELIGENTE --- */
        /* CORRECCIÓN ROTACIÓN: Usar 100vh/vw para llenar pantalla sin bordes */
        .rotate-mobile {
            transform: rotate(90deg);
            width: 100vh !important; 
            height: 100vw !important;
            max-width: 100vh !important;
            max-height: 100vw !important;
            object-fit: contain;
        }

        .pointer-events-auto {
            pointer-events: auto;
        }
        
        #lightbox-modal {
            transition: opacity 0.3s ease-in-out, visibility 0.3s;
        }

        /* --- PANTALLA DE INTRODUCCIÓN (EL SELLO) --- */
        #intro-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: radial-gradient(circle at center, #fce7f3 0%, #fbcfe8 100%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 1.5s ease-in-out, visibility 1.5s;
        }

        .seal-container {
            position: relative;
            cursor: pointer;
            width: 220px;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .seal-container:hover {
            transform: scale(1.05);
        }

        .soul-circle {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 4px dotted var(--gold-accent);
            box-shadow: 0 0 20px rgba(244, 114, 182, 0.2);
            animation: spinSlow 20s linear infinite;
        }

        @keyframes spinSlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .soul-fill {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(244, 114, 182, 0.1) 70%);
            transform: scale(0);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .character-head {
            width: 160px;
            height: 160px; 
            object-fit: contain; 
            z-index: 10;
            filter: drop-shadow(0 4px 6px rgba(190, 24, 93, 0.2));
            transition: filter 0.3s ease;
        }

        .seal-container:hover .character-head {
            filter: drop-shadow(0 0 15px var(--minnie-pink));
        }

        .intro-text {
            margin-top: 2rem;
            color: var(--deep-pink);
            font-size: 1.5rem;
            letter-spacing: 0.05em;
            opacity: 0.8;
            animation: pulseText 3s infinite;
            text-align: center;
            padding-left: 1rem;
            padding-right: 1rem;
            font-weight: 600;
        }

        .shatter-anim {
            animation: shatterEffect 0.8s forwards ease-out;
        }

        @keyframes shatterEffect {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.4); opacity: 0.8; filter: blur(2px); }
            100% { transform: scale(3); opacity: 0; filter: blur(10px); }
        }

        @keyframes pulseText {
            0%, 100% { opacity: 0.6; transform: scale(0.98); }
            50% { opacity: 1; transform: scale(1.02); text-shadow: 0 0 8px rgba(244,114,182,0.4); }
        }

        /* --- CONTENIDO PRINCIPAL --- */
        .main-content-hidden {
            opacity: 0;
            pointer-events: none;
            transition: opacity 2.5s ease-in;
        }
        
        .reveal-content {
            opacity: 1;
            pointer-events: auto;
        }

        /* --- FONDO ANIMADO --- */
        .background-layer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-color: var(--bg-pink);
            background-image: radial-gradient(var(--minnie-pink) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.3;
        }

        .vignette {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, transparent 40%, #fff0f5 100%);
            z-index: -1;
            pointer-events: none;
        }

        .particle-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .grub-bubble {
            position: absolute;
            border-radius: 50%;
            opacity: 0.6;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(244, 114, 182, 0.2) 100%);
            box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .grub-image {
            width: 80%;
            height: 80%;
            object-fit: contain;
            background-color: transparent;
            color: var(--deep-pink);
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* --- ESTILOS DE UI TEMA MINNIE --- */
        .hk-card {
            background: rgba(255, 255, 255, 0.85);
            border: 2px solid #fff;
            box-shadow: 0 10px 30px rgba(190, 24, 93, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.8);
            position: relative;
            backdrop-filter: blur(8px);
            border-radius: 20px;
        }

        .hk-border-top, .hk-border-bottom {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
        }
        .hk-border-top { top: 10px; }
        .hk-border-bottom { bottom: 10px; }

        .hk-btn {
            background: linear-gradient(to bottom, #fce7f3, #fbcfe8);
            border: 2px solid #f9a8d4;
            color: var(--deep-pink);
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-radius: 50px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        
        .hk-btn:hover {
            border-color: var(--deep-pink);
            box-shadow: 0 0 15px rgba(244, 114, 182, 0.4);
            transform: translateY(-2px);
            color: #831843;
        }

        .hk-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
            transition: 0.5s;
        }

        .hk-btn:hover::after {
            left: 100%;
        }
        
        .hk-btn-map {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem; 
        }

        @keyframes floatUpBubble {
            0% { transform: translateY(100vh) scale(0.8) rotate(0deg); opacity: 0; }
            20% { opacity: 0.8; }
            80% { opacity: 0.6; }
            100% { transform: translateY(-10vh) scale(1) rotate(20deg); opacity: 0; }
        }

        .countdown-digit {
            font-family: 'Quicksand', sans-serif;
            line-height: 1.1;
            background: -webkit-linear-gradient(#be185d, #831843);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(255,255,255,0.5);
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #fff0f5;
        }
        ::-webkit-scrollbar-thumb {
            background: #f472b6;
            border-radius: 4px;
        }
