.game-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

#chatButton,
#gameDisconnectButton {
    padding: 10px 18px;
    border: 3px solid #3a2a36;
    border-radius: 10px;
    background: #f7ead7;
    color: #2b211e;
    font-weight: 700;
    cursor: pointer;
}

#emojiPanel {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 45;
    display: flex;
    gap: 10px;
    padding: 12px;
    border: 4px solid #3a2a36;
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.92);
    transform: translateX(-50%);
}

.emoji-option {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #f7ead7;
    font-size: 24px;
    cursor: pointer;
}

.floating-emoji {
    position: fixed;
    bottom: 70px;
    z-index: 44;
    font-size: 42px;
    pointer-events: none;
    animation: floatEmoji 2.4s ease-out forwards;
}

@keyframes floatEmoji {
    from {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    to {
        transform: translateY(-65vh) scale(1.35);
        opacity: 0;
    }
}
