/* Reducción de estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0b10; /* Fondo oscuro tecnológico */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
}

/* Contenedor Principal */
.container {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Sección de la Imagen con efectos Neo-Futuristas */
.image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.15); /* Brillo cian suave */
}

.tech-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Efecto de escaneo sobre la imagen */
.image-wrapper::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.2), transparent);
    animation: scan 3s linear infinite;
}

/* Textos */
h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    background: linear-gradient(45deg, #00e5ff, #7209b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.1rem;
    color: #b0b3c1;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Barra de Progreso */
.progress-bar-container {
    background: rgba(255, 255, 255, 0.05);
    height: 6px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 10px auto;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar {
    background: linear-gradient(90deg, #00e5ff, #7209b7);
    height: 100%;
    width: 75%; /* Modifica esto para cambiar el porcentaje */
    border-radius: 10px;
    box-shadow: 0 0 15px #00e5ff;
}

.status-text {
    font-size: 0.85rem;
    color: #00e5ff;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

/* Animaciones */
@keyframes scan {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Adaptación para pantallas pequeñas */
@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    .subtitle { font-size: 0.95rem; }
}