
        /* Reset y estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #343a40;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            text-align: center;
            line-height: 1.6;
        }

        /* Contenedor principal */
        .error-container {
            max-width: 600px;
            width: 100%;
            padding: 40px 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        /* Ilustración */
        .error-illustration {
            max-width: 300px;
            margin: 0 auto 30px;
        }

        .error-illustration img {
            width: 100%;
            height: auto;
        }

        /* Texto */
        .error-title {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #dc3545;
            font-weight: 700;
        }

        .error-subtitle {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #495057;
        }

        .error-description {
            margin-bottom: 30px;
            color: #6c757d;
            font-size: 1.1rem;
        }

        /* Botón */
        .home-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .home-btn:hover {
            background-color: #0069d9;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        .error-footer {
            margin-top: 40px;
            color: #adb5bd;
            font-size: 0.9rem;
        }

        /* Efecto de animación */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .error-title {
                font-size: 2.5rem;
            }
            
            .error-subtitle {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .error-container {
                padding: 30px 20px;
            }
            
            .error-title {
                font-size: 2rem;
            }
            
            .error-subtitle {
                font-size: 1.1rem;
            }
            
            .error-description {
                font-size: 1rem;
            }
            
            .home-btn {
                padding: 10px 25px;
            }
            
            .error-illustration {
                max-width: 200px;
            }
        }
