/* Emote Wheel Styles */
#emoteWheel {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#emoteWheel.show {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}

.emote-box {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid #444;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
    animation: emoteBoxSlideIn 0.3s ease forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.emote-box:nth-child(1) { animation-delay: 0s; }
.emote-box:nth-child(2) { animation-delay: 0.05s; }
.emote-box:nth-child(3) { animation-delay: 0.1s; }

@keyframes emoteBoxSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.emote-box.selected {
    border-color: #00f7ff;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.6);
    transform: scale(1.1);
    background: rgba(0, 247, 255, 0.15);
}

.emote-box-number {
    position: absolute;
    top: 4px;
    left: 6px;
    font-size: 12px;
    font-weight: bold;
    color: #888;
    font-family: 'Inter', sans-serif;
}

.emote-box.selected .emote-box-number {
    color: #00f7ff;
}

.emote-box-icon {
    font-size: 32px;
    margin-bottom: 4px;
}

.emote-box-name {
    font-size: 10px;
    color: #aaa;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.emote-box.selected .emote-box-name {
    color: #00f7ff;
}
