/* ===== LAYOUT PRINCIPAL ===== */

/* Contenedor principal */
.evaluacion-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

/* Partículas cyber dinámicas de fondo */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.6;
    animation: cyberFloat 15s infinite linear;
    box-shadow: var(--neon-red);
}

.particle:nth-child(odd) {
    background: var(--secondary-gold);
    box-shadow: var(--neon-gold);
    animation-duration: 20s;
}

.particle:nth-child(3n) {
    background: var(--info-color);
    box-shadow: var(--neon-blue);
    animation-duration: 25s;
}

@keyframes cyberFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: scale(1);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Logo container */
.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0 0.5rem;
    z-index: 10;
}

/* Ocultar logo en pantalla de pregunta (está dentro del tablero) */
#screenPregunta.active ~ .logo-container,
#screenPregunta.active .logo-container {
    display: none;
}

/* Ocultar logo cuando la pantalla de pregunta está activa */
.evaluacion-container:has(#screenPregunta.active) > .logo-container {
    display: none;
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(199, 0, 57, 0.3));
}

.logo-wrapper:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(199, 0, 57, 0.5));
}

/* Pantallas principales */
.screen {
    display: none;
    width: 100%;
    min-height: 90vh;
    position: relative;
    z-index: 2;
}

.screen.active {
    display: block;
}

/* Contenedores de pantalla */
.screen-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-wrapper img {
        height: 70px;
    }
    
    .screen-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-wrapper img {
        height: 60px;
    }
    
    .screen-content {
        padding: 0.75rem;
    }

    .screen {
        min-height: auto;
    }

    .screen-content {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .screen-content {
        padding-bottom: 3rem;
    }
}

