@charset "utf-8";
/* CSS Document */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Courier New', monospace;
            overflow: hidden;
            background: #000;
            color: #0f0;
        }

        /* Canvas para el fondo de matriz binaria */
        #matrix-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        /* Contenedor principal */
        .container {
            position: relative;
            z-index: 2;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Header con logo */
        .header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 30px;
            display: flex;
            justify-content: center;
            background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
        }

        .logo-container {
            background: rgba(0, 255, 0, 0.1);
            padding: 20px;
            border-radius: 15px;
            border: 2px solid #0f0;
            box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
            animation: pulse 2s infinite;
        }

        .logo {
            max-width: 200px;
            height: auto;
            filter: drop-shadow(0 0 10px #0f0);
        }

        /* Contenido central */
        .content {
            text-align: center;
            padding: 40px;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 20px;
            border: 3px solid #0f0;
            box-shadow: 0 0 50px rgba(0, 255, 0, 0.7);
            animation: fadeInUp 1s ease-out;
        }

        .main-title {
            font-size: 3.5em;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
            background: linear-gradient(45deg, #0f0, #0ff, #0f0);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite;
        }

        .subtitle {
            font-size: 1.5em;
            color: #0ff;
            margin-bottom: 30px;
            animation: blink 1.5s infinite;
        }

        /* Iconos de herramientas */
        .icons-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .icon {
            width: 80px;
            height: 80px;
            background: rgba(0, 255, 0, 0.1);
            border: 2px solid #0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5em;
            animation: float 3s ease-in-out infinite;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .icon:nth-child(1) { animation-delay: 0s; }
        .icon:nth-child(2) { animation-delay: 0.5s; }
        .icon:nth-child(3) { animation-delay: 1s; }
        .icon:nth-child(4) { animation-delay: 1.5s; }
        .icon:nth-child(5) { animation-delay: 2s; }

        .icon:hover {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
            background: rgba(0, 255, 0, 0.3);
        }

        /* Barra de progreso */
        .progress-container {
            width: 100%;
            max-width: 500px;
            height: 30px;
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid #0f0;
            border-radius: 15px;
			margin: auto;
            margin-top: 40px;
            overflow: hidden;
            position: relative;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #0f0, #0ff, #0f0);
            width: 0%;
            animation: loading 3s ease-in-out infinite;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
        }

        .progress-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            font-weight: bold;
            text-shadow: 0 0 10px #0f0;
			width: 100%;
        }

        /* Mensaje adicional */
        .message {
            margin-top: 30px;
            font-size: 1.2em;
            color: #0ff;
            animation: fadeIn 2s ease-in;
        }

        /* Animaciones */
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes glow {
            0%, 100% { text-shadow: 0 0 20px #0f0, 0 0 30px #0f0; }
            50% { text-shadow: 0 0 30px #0f0, 0 0 50px #0ff; }
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

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

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes loading {
            0% { width: 0%; }
            50% { width: 70%; }
            100% { width: 100%; }
        }

        /* Partículas flotantes */
        .particle {
            position: fixed;
            width: 5px;
            height: 5px;
            background: #0f0;
            border-radius: 50%;
            pointer-events: none;
            z-index: 3;
            animation: particleFloat 4s linear infinite;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) scale(1);
                opacity: 0;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2em;
            }
            .subtitle {
                font-size: 1.2em;
            }
            .icon {
                width: 60px;
                height: 60px;
                font-size: 2em;
            }
            .logo {
                max-width: 150px;
            }
        }