/* ===== SOCIAL LOBBY ===== */

#social-player-count {
    display: none;
    position: fixed;
    top: 12px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 100;
    border: 1px solid rgba(255, 200, 50, 0.3);
    font-family: 'Inter', sans-serif;
}

#social-chat-hint {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 28px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 100;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
    border: 1px solid rgba(255, 200, 50, 0.25);
    animation: hintPulse 3s ease-in-out infinite;
}

#social-chat-hint kbd {
    display: inline-block;
    background: rgba(255, 200, 50, 0.2);
    border: 1px solid rgba(255, 200, 50, 0.4);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #ffc832;
    margin: 0 2px;
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

#social-chat-container {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    flex-direction: row;
    z-index: 101;
    font-family: 'Inter', sans-serif;
}

#social-chat-input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 200, 50, 0.4);
    border-radius: 24px;
    color: #fff;
    font-size: 15px;
    outline: none;
    font-family: 'Inter', sans-serif;
}

#social-chat-input:focus {
    border-color: rgba(255, 200, 50, 0.7);
    box-shadow: 0 0 16px rgba(255, 200, 50, 0.15);
}

#social-chat-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

/* ===== COMING SOON MODAL ===== */

#coming-soon-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

#coming-soon-overlay.active {
    display: flex;
}

#coming-soon-modal {
    background: #1a1a2e;
    border: 1px solid rgba(255, 200, 50, 0.3);
    border-radius: 16px;
    padding: 32px 36px;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#coming-soon-modal h2 {
    color: #ffc832;
    margin: 0 0 16px 0;
    font-size: 22px;
    font-weight: 700;
}

#coming-soon-modal p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

#coming-soon-close {
    background: rgba(255, 200, 50, 0.2);
    border: 1px solid rgba(255, 200, 50, 0.4);
    color: #ffc832;
    padding: 10px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

#coming-soon-close:hover {
    background: rgba(255, 200, 50, 0.35);
}