/* ===== ESCENA 14: PARTICLE MORPHING ===== */

#escena-14 {
    background: #050012;
    overflow: hidden;
    position: relative;
}

/* Canvas de partículas: ocupa toda la escena */
#e14-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Etiqueta de instrucción / subtítulo */
#e14-label {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: rgba(180, 230, 255, 0.75);
    letter-spacing: 2px;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(0, 220, 255, 0.5);
    animation: e14-pulso 2.4s ease-in-out infinite;
}

@keyframes e14-pulso {
    0%, 100% { opacity: 0.75; }
    50%       { opacity: 0.35; }
}

/* Overlay final (mensaje post-explosión) */
#e14-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    display: none;
}

#e14-overlay.e14-overlay-visible {
    display: block;
}

#e14-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    text-shadow:
        0 0 20px rgba(0, 220, 255, 0.9),
        0 0 50px rgba(255, 0, 200, 0.6),
        0 0 90px rgba(255, 215, 0, 0.4);
    margin-bottom: 14px;
    animation: e14-glow 2.5s ease-in-out infinite alternate;
}

#e14-overlay p {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: rgba(200, 240, 255, 0.85);
    letter-spacing: 1px;
}

@keyframes e14-glow {
    0% {
        text-shadow:
            0 0 20px rgba(0, 220, 255, 0.9),
            0 0 50px rgba(255, 0, 200, 0.6),
            0 0 90px rgba(255, 215, 0, 0.4);
    }
    100% {
        text-shadow:
            0 0 35px rgba(0, 220, 255, 1),
            0 0 80px rgba(255, 0, 200, 0.9),
            0 0 130px rgba(255, 215, 0, 0.7);
    }
}

/* Botón continuar (igual al patrón del resto de escenas) */
#btn-continuar-c14 {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    opacity: 0;
    pointer-events: none;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
    #e14-label {
        font-size: 0.75rem;
        bottom: 100px;
    }

    #e14-overlay h2 {
        font-size: 1.4rem;
    }
}
