.live-feed {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.live-label {
    font-weight: 800;
    padding: 0 16px;
    font-size: 18px;
    color: var(--text-primary);
}

.live-items-scroll {
    display: flex;
    gap: 12px;
    padding: 0 16px;
    overflow-x: auto;
    scrollbar-width: none;
    width: 100%;
}

.live-items-scroll::-webkit-scrollbar {
    display: none;
}

.live-item {
    width: 38px !important;
    height: 38px !important;
    min-width: 0 !important;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    border: 1.5px solid var(--glass-border);
}

.live-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.live-user {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    color: var(--text-secondary);
}

.rarity-mythical {
    border: 1px solid #ff4444;
}

.rarity-legendary {
    border: 1px solid #fbbf24;
}

.rarity-rare {
    border: 1px solid #3b82f6;
}

.rarity-common {
    border: 1px solid #555;
}