        /* Reset y estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #000;
            color: #fff;
            overflow: hidden; /* Volver a ocultar para evitar scroll innecesario en PC */
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 20px 0;
        }
        
        /* Fondo con efecto de tormenta */
        #stormCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }
        
        .lightning-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0);
            pointer-events: none;
            z-index: -1;
            transition: background-color 0.05s;
        }
        
        /* Contenedor principal */
        .container {
            text-align: center;
            z-index: 10;
            padding: 10px;
            max-width: 1200px;
            width: 90%;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px; /* Reducido de 40px para ahorrar espacio vertical */
        }
        
        /* Logo estilo futurista */
        .logo-container {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        
        .dynamic-logo {
            max-width: 380px; /* Reducido de 500px para que quepa mejor en pantalla única */
            height: auto;
            position: relative;
            z-index: 2;
            transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
            filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.5));
        }

        .logo-flash {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            opacity: 0;
            z-index: 1;
            pointer-events: none;
            mix-blend-mode: screen;
            filter: blur(20px);
        }

        .dynamic-logo.fade {
            opacity: 0;
            transform: scale(0.95);
        }
        
        .logo-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(ellipse at center, rgba(0, 243, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
            border-radius: 50%;
            z-index: -1;
            animation: pulse 4s infinite alternate;
        }
        
        /* Mensaje "Muy Pronto..." */
        .soon-container {
            position: relative;
        }
        
        .soon-text {
            font-family: 'Orbitron', monospace;
            font-size: 2.8rem; /* Reducido un poco */
            color: #fff;
            text-shadow: 
                0 0 10px #fff,
                0 0 20px #00f3ff,
                0 0 30px #0066ff;
            letter-spacing: 5px;
            position: relative;
            display: inline-block;
            animation: textGlow 3s infinite alternate;
        }
        
        .soon-dots {
            position: relative;
            display: inline-block;
        }
        
        .dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: #00f3ff;
            border-radius: 50%;
            margin: 0 5px;
            box-shadow: 0 0 10px #00f3ff, 0 0 20px #0066ff;
            animation: dotsPulse 1.5s infinite;
        }
        
        .dot:nth-child(2) {
            animation-delay: 0.5s;
        }
        
        .dot:nth-child(3) {
            animation-delay: 1s;
        }
        
        /* Efecto de partículas */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background-color: rgba(0, 243, 255, 0.7);
            border-radius: 50%;
            box-shadow: 0 0 5px #00f3ff;
        }
        
        /* Contador regresivo */
        .countdown {
            font-family: 'Orbitron', monospace;
            width: 100%;
        }
        
        .countdown-title {
            font-size: 1.2rem;
            color: #aaa;
            margin-bottom: 20px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .countdown-number {
            font-size: 2.5rem;
            color: #00f3ff;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 10px 15px;
            border-radius: 5px;
            min-width: 80px;
            text-shadow: 0 0 10px #00f3ff;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
            margin-bottom: 5px;
        }
        
        .countdown-label {
            font-size: 0.8rem;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Línea de carga */
        .loading-container {
            width: 100%;
            max-width: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .loading-percentage {
            font-family: 'Orbitron', monospace;
            color: #00f3ff;
            font-size: 1.2rem;
            margin-bottom: 10px;
            text-shadow: 0 0 10px #00f3ff;
            letter-spacing: 2px;
        }

        .loading-bar {
            width: 100%;
            height: 4px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            position: relative;
        }
        
        .loading-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%; /* Controlado por JS */
            background: linear-gradient(90deg, #0066ff, #00f3ff);
            box-shadow: 0 0 10px #00f3ff;
            transition: width 0.1s linear;
        }
        
        /* Mensaje inferior */
        .footer-message {
            position: fixed;
            bottom: 20px;
            width: 100%;
            text-align: center;
            color: #666;
            font-size: 0.85rem;
            letter-spacing: 1px;
            z-index: 10;
        }
        
        /* Animaciones */
        @keyframes pulse {
            0% {
                opacity: 0.3;
                transform: translate(-50%, -50%) scale(1);
            }
            100% {
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }
        
        @keyframes textGlow {
            0% {
                text-shadow: 
                    0 0 10px #fff,
                    0 0 20px #00f3ff,
                    0 0 30px #0066ff;
            }
            100% {
                text-shadow: 
                    0 0 15px #fff,
                    0 0 30px #00f3ff,
                    0 0 45px #0066ff,
                    0 0 60px #8a2be2;
            }
        }
        
        @keyframes dotsPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.5);
                opacity: 0.7;
            }
        }
        
        @keyframes loading {
            0% {
                width: 0%;
                left: 0;
            }
            50% {
                width: 100%;
                left: 0;
            }
            100% {
                width: 0%;
                left: 100%;
            }
        }
        
        /* Efecto de rayo */
        @keyframes lightningFlash {
            0% { background-color: rgba(255, 255, 255, 0); }
            1% { background-color: rgba(255, 255, 255, 0.6); }
            2% { background-color: rgba(255, 255, 255, 0); }
            8% { background-color: rgba(255, 255, 255, 0); }
            9% { background-color: rgba(255, 255, 255, 0.3); }
            10% { background-color: rgba(255, 255, 255, 0); }
            100% { background-color: rgba(255, 255, 255, 0); }
        }

        @keyframes logoLightningFlash {
            0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
            10% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
            20% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
            25% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
            100% { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }
        }
        
        /* Responsive para móviles - Permitir scroll si es necesario */
        @media (max-width: 768px) {
            body {
                overflow-y: auto;
                height: auto;
                min-height: 100vh;
                padding-bottom: 60px; /* Espacio para el footer */
            }

            .container {
                gap: 15px;
            }

            .dynamic-logo {
                max-width: 250px;
            }
            
            .soon-text {
                font-size: 2rem;
                letter-spacing: 3px;
            }
            
            .countdown-container {
                gap: 10px;
                flex-wrap: nowrap; /* Forzar una línea en tablets */
            }
            
            .countdown-number {
                font-size: 1.8rem;
                min-width: 60px;
                padding: 8px 10px;
            }
            
            .countdown-title {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                width: 95%;
                padding: 10px 5px;
            }

            .dynamic-logo {
                max-width: 180px;
            }
            
            .soon-text {
                font-size: 1.5rem; /* Más pequeño para evitar saltos de línea */
                letter-spacing: 2px;
            }
            
            .countdown-container {
                gap: 5px;
            }
            
            .countdown-item {
                flex: 1; /* Distribuir espacio equitativamente */
            }
            
            .countdown-number {
                font-size: 1.4rem;
                min-width: 0; /* Permitir que se encoja si es necesario */
                width: 100%;
                padding: 5px;
            }

            .countdown-label {
                font-size: 0.6rem;
            }
            
            .loading-bar {
                width: 80%;
            }

            .visit-counter {
                padding: 5px 10px;
                font-size: 0.8rem;
            }
        }/* Estilos para el contador de visitas */
.visit-counter-container {
  margin-top: 25px;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.visit-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 243, 255, 0.3);
  padding: 8px 15px;
  border-radius: 20px;
  font-family: "Orbitron", monospace;
  color: #00f3ff;
  font-size: 0.9rem;
  text-shadow: 0 0 5px rgba(0, 243, 255, 0.8);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
  transition: all 0.3s ease;
}

.visit-counter:hover {
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
  transform: scale(1.05);
  background: rgba(0, 243, 255, 0.1);
}

.visit-counter i {
  font-size: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
