/* ESTILOS PARA LA EXPERIENCIA ZEN WAVE (olas en el vacío) */

/* Contenedor principal - fondo negro */
#aquatic-experience {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
}

#aquatic-experience.active {
    opacity: 1;
    pointer-events: all;
}

/* Canvas de partículas */
#zen-wave-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Botón de cierre */
.close-experience {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10010;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.close-experience.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.close-experience:hover {
    background: rgba(0, 243, 255, 0.15);
    color: var(--solvix-cyan);
    border-color: var(--solvix-cyan);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

/* Logo glow en modo zen */
.logo-active {
    animation: logoGlow 1.5s infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.7));
    }
}
