/* === public/css/app/appFrame.css (LAYOUT GENERAL DE LA APP USUARIO) === */
#top-bar { position: fixed; top: 15px; right: 15px; z-index: 2000; display:flex; align-items:center; }
#on-air-logo { position: fixed; top: 15px; left: 15px; height: 50px; z-index: 2000; display: none; filter: drop-shadow(0 0 5px rgba(0,255,0,0.5)); }
#main-zone { position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; padding-top: 90px; z-index: 100; pointer-events: none; }
#app { width: 100%; display: none; justify-content: center; pointer-events: auto; } 

#layer-waiting { position: fixed; top:0; left:0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #111; z-index: 200; pointer-events: none; transition: opacity 0.3s; }
#layer-waiting.active { pointer-events: auto; background: #111; }
.big-logo { width: 300px; opacity: 0.5; animation: pulse 3s infinite; margin-bottom: 20px; }
@keyframes pulse { 0% { opacity: 0.4; transform: scale(1); } 50% { opacity: 0.8; transform: scale(1.05); } 100% { opacity: 0.4; transform: scale(1); } }

.btn-mini-login { background: #6441a5; color: white; padding: 8px 20px; border-radius: 30px; text-decoration: none; font-size: 1.1rem; display: flex; align-items: center; gap: 8px; border: 2px solid white; cursor: pointer; font-weight: bold; box-shadow: 0 4px 10px black; }
.user-avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #00ff00; }
.login-arrow { position: absolute; right: 30px; top: 80px; color: #00ff00; font-size: 1.5rem; font-weight: bold; text-align: right; animation: bounce 1s infinite; text-shadow: 0 0 10px #00ff00; pointer-events: none; z-index: 3000; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

#heart-container { 
    width: 100%; 
    display: none; 
    flex-direction: column; /* 🔥 Apila los elementos verticalmente */
    gap: 25px; /* 🔥 Crea una separación entre el texto y el corazón */
    justify-content: center; 
    align-items: center; 
    transition: all 0.4s ease; 
    z-index: 300; 
    padding-bottom: 20px; 
    pointer-events: none; 
}
#heart-container.heart-centered { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); }
#heart-container.heart-docked { position: relative; margin-top: 20px; flex-shrink: 0; }
/* 🔥 CORAZÓN VERDE UNIFICADO (Borde sólido y brillo 0.6) 🔥 */
/* --- CORAZÓN VERDE UNIFICADO --- */
#heart-btn { 
    pointer-events: auto !important; 
    cursor: pointer !important; 
    width: 120px; 
    height: 120px; 
    font-size: 60px; 
    background: rgba(255,255,255,0.05); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    /* 🔥 Unificado: Borde sólido y brillo 0.6 🔥 */
    border: 6px solid #00ff00; 
    transition: all 0.1s; 
    backdrop-filter: blur(5px); 
    box-shadow: 0 0 55px rgba(0, 255, 0, 0.6); 
    -webkit-tap-highlight-color: transparent; 
    user-select: none; 
}

/* --- RECUADRO INFORMATIVO DEL LIMBO --- */
.limbo-info-box {
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid #ffd700;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    max-width: 280px;
    font-family: 'Share Tech Mono', monospace;
    animation: fadeIn 0.5s ease-out;
}

.limbo-info-box h2 { margin: 0 0 10px 0; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 1px; }
.limbo-info-box p { margin: 5px 0; font-size: 0.95rem; line-height: 1.3; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
#heart-btn:active { transform: scale(0.9); background: rgba(0, 255, 0, 0.1); }