/* Solo2 Component: El Duende (Connection Lobby) */

.lobby-fullscreen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    z-index: 100;
    transition: opacity 0.4s ease-out, visibility 0.4s;
}

.lobby-fullscreen.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lobby-radar {
    font-size: 5rem;
    margin-bottom: var(--space-lg);
    filter: drop-shadow(0 0 20px var(--color-primary));
    animation: duendeFloat 3s ease-in-out infinite;
}

.lobby-message {
    text-align: center;
    max-width: 280px;
}

.lobby-message-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.lobby-message-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.4;
}

@keyframes duendeFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

/* Estado de éxito: Destello */
.lobby-fullscreen.success::after {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    animation: successFlash 0.5s ease-out;
}

@keyframes successFlash {
    0% { opacity: 0.5; }
    100% { opacity: 0; }
}
